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

Unified Diff: environs/maas/maas_test.go

Issue 8726044: environs: use new tool-finding funcs
Patch Set: environs: use new tool-finding funcs Created 11 years, 11 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/maas/environ_test.go ('k') | environs/open_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: environs/maas/maas_test.go
=== modified file 'environs/maas/maas_test.go'
--- environs/maas/maas_test.go 2013-02-12 15:21:29 +0000
+++ environs/maas/maas_test.go 2013-04-14 15:09:35 +0000
@@ -3,14 +3,16 @@
import (
. "launchpad.net/gocheck"
"launchpad.net/gomaasapi"
- "testing"
+ "launchpad.net/juju-core/testing"
+ stdtesting "testing"
)
-func TestMAAS(t *testing.T) {
+func TestMAAS(t *stdtesting.T) {
TestingT(t)
}
type ProviderSuite struct {
+ testing.LoggingSuite
environ *maasEnviron
testMAASObject *gomaasapi.TestMAASObject
}
@@ -18,15 +20,22 @@
var _ = Suite(&ProviderSuite{})
func (s *ProviderSuite) SetUpSuite(c *C) {
+ s.LoggingSuite.SetUpSuite(c)
TestMAASObject := gomaasapi.NewTestMAAS("1.0")
s.testMAASObject = TestMAASObject
s.environ = &maasEnviron{name: "test env", maasClientUnlocked: &TestMAASObject.MAASObject}
}
+func (s *ProviderSuite) SetUpTest(c *C) {
+ s.LoggingSuite.SetUpTest(c)
+}
+
func (s *ProviderSuite) TearDownTest(c *C) {
s.testMAASObject.TestServer.Clear()
+ s.LoggingSuite.TearDownTest(c)
}
func (s *ProviderSuite) TearDownSuite(c *C) {
s.testMAASObject.Close()
+ s.LoggingSuite.TearDownSuite(c)
}
« no previous file with comments | « environs/maas/environ_test.go ('k') | environs/open_test.go » ('j') | no next file with comments »

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