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) |
} |