~rogpeppe/juju-core/438-local-instance-Addresses

« back to all changes in this revision

Viewing changes to environs/httpstorage/backend_test.go

  • Committer: Tarmac
  • Author(s): Tim Penhey
  • Date: 2013-09-20 03:21:56 UTC
  • mfrom: (1847.1.9 testbase)
  • Revision ID: tarmac-20130920032156-bdcdz4hd9jzpuim3
[r=thumper] Add a testbase package with no juju-core deps.

The base cleanup and logging suites are now there,
as are the patch functions.

A test also exists there to make sure that no juju-core
dependencies creep in.

https://codereview.appspot.com/13694046/

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
        "launchpad.net/juju-core/environs/filestorage"
20
20
        "launchpad.net/juju-core/environs/httpstorage"
21
 
        "launchpad.net/juju-core/testing"
 
21
        "launchpad.net/juju-core/testing/testbase"
22
22
)
23
23
 
24
24
func TestLocal(t *stdtesting.T) {
26
26
}
27
27
 
28
28
type backendSuite struct {
29
 
        testing.LoggingSuite
 
29
        testbase.LoggingSuite
30
30
}
31
31
 
32
32
var _ = gc.Suite(&backendSuite{})