Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(37)

Unified Diff: environs/manual/detection_test.go

Issue 14433058: Providers are responsible for selecting tools
Patch Set: Providers are responsible for selecting tools Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « environs/manual/detection.go ('k') | environs/manual/fakessh.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: environs/manual/detection_test.go
=== modified file 'environs/manual/detection_test.go'
--- environs/manual/detection_test.go 2013-09-20 04:41:12 +0000
+++ environs/manual/detection_test.go 2013-11-18 04:53:44 +0000
@@ -26,14 +26,14 @@
"processor: 0",
}, "\n")
defer installFakeSSH(c, detectionScript, response, 0)()
- _, series, err := detectSeriesAndHardwareCharacteristics("whatever")
+ _, series, err := DetectSeriesAndHardwareCharacteristics("whatever")
c.Assert(err, gc.IsNil)
c.Assert(series, gc.Equals, "edgy")
}
func (s *detectionSuite) TestDetectionError(c *gc.C) {
defer installFakeSSH(c, detectionScript, "oh noes", 33)()
- _, _, err := detectSeriesAndHardwareCharacteristics("whatever")
+ _, _, err := DetectSeriesAndHardwareCharacteristics("whatever")
c.Assert(err, gc.ErrorMatches, "exit status 33 \\(oh noes\\)")
}
@@ -93,7 +93,7 @@
c.Logf("test %d: %s", i, test.summary)
scriptResponse := strings.Join(test.scriptResponse, "\n")
defer installFakeSSH(c, detectionScript, scriptResponse, 0)()
- hc, _, err := detectSeriesAndHardwareCharacteristics("hostname")
+ hc, _, err := DetectSeriesAndHardwareCharacteristics("hostname")
c.Assert(err, gc.IsNil)
c.Assert(hc.String(), gc.Equals, test.expectedHc)
}
« no previous file with comments | « environs/manual/detection.go ('k') | environs/manual/fakessh.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b