~mfoord/juju-core/ha-rsyslog-2

« back to all changes in this revision

Viewing changes to provider/dummy/config_test.go

  • Committer: Wayne Witzel III
  • Date: 2014-05-22 14:05:15 UTC
  • mto: This revision was merged to the branch mainline in revision 2737.
  • Revision ID: wayne.witzel@canonical.com-20140522140515-bsr7yv78eh8ku4iv
revert merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
        "launchpad.net/juju-core/environs/configstore"
12
12
        "launchpad.net/juju-core/provider/dummy"
13
13
        "launchpad.net/juju-core/testing"
 
14
        "launchpad.net/juju-core/testing/testbase"
14
15
)
15
16
 
16
17
var _ = gc.Suite(&ConfigSuite{})
17
18
 
18
19
type ConfigSuite struct {
19
 
        testing.BaseSuite
 
20
        testbase.LoggingSuite
20
21
}
21
22
 
22
23
func (s *ConfigSuite) TearDownTest(c *gc.C) {
23
 
        s.BaseSuite.TearDownTest(c)
 
24
        s.LoggingSuite.TearDownTest(c)
24
25
        dummy.Reset()
25
26
}
26
27