~jameinel/juju-core/api-facade-registry

« back to all changes in this revision

Viewing changes to testing/filetesting/filetesting_test.go

  • Committer: John Arbash Meinel
  • Date: 2014-05-20 14:20:42 UTC
  • mfrom: (2721.1.4 api-rpc-reflect-version)
  • Revision ID: john@arbash-meinel.com-20140520142042-0p32ldi3wxon92fl
Merged api-rpc-reflect-version into api-facade-registry.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
        jc "github.com/juju/testing/checkers"
12
12
        gc "launchpad.net/gocheck"
13
13
 
 
14
        "launchpad.net/juju-core/testing"
14
15
        ft "launchpad.net/juju-core/testing/filetesting"
15
 
        "launchpad.net/juju-core/testing/testbase"
16
16
)
17
17
 
18
18
type EntrySuite struct {
19
 
        testbase.LoggingSuite
 
19
        testing.BaseSuite
20
20
        basePath string
21
21
}
22
22
 
23
23
var _ = gc.Suite(&EntrySuite{})
24
24
 
25
25
func (s *EntrySuite) SetUpTest(c *gc.C) {
26
 
        s.LoggingSuite.SetUpTest(c)
 
26
        s.BaseSuite.SetUpTest(c)
27
27
        s.basePath = c.MkDir()
28
28
}
29
29