LEFT | RIGHT |
1 // Copyright 2013 Canonical Ltd. | 1 // Copyright 2013 Canonical Ltd. |
2 // Licensed under the AGPLv3, see LICENCE file for details. | 2 // Licensed under the AGPLv3, see LICENCE file for details. |
3 | 3 |
4 package environs_test | 4 package environs_test |
5 | 5 |
6 import ( | 6 import ( |
7 . "launchpad.net/gocheck" | 7 . "launchpad.net/gocheck" |
8 | 8 |
9 "launchpad.net/juju-core/environs" | 9 "launchpad.net/juju-core/environs" |
10 » "launchpad.net/juju-core/environs/provider/dummy" | 10 » "launchpad.net/juju-core/provider/dummy" |
11 "launchpad.net/juju-core/testing" | 11 "launchpad.net/juju-core/testing" |
12 "launchpad.net/juju-core/version" | 12 "launchpad.net/juju-core/version" |
13 ) | 13 ) |
14 | 14 |
15 type MongoToolsSuite struct { | 15 type MongoToolsSuite struct { |
16 env environs.Environ | 16 env environs.Environ |
17 testing.LoggingSuite | 17 testing.LoggingSuite |
18 dataDir string | 18 dataDir string |
19 } | 19 } |
20 | 20 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 contents: []string{ | 66 contents: []string{ |
67 environs.MongoStoragePath("foo", version.CurrentArch()), | 67 environs.MongoStoragePath("foo", version.CurrentArch()), |
68 environs.MongoStoragePath(version.CurrentSeries(), "foo"), | 68 environs.MongoStoragePath(version.CurrentSeries(), "foo"), |
69 }, | 69 }, |
70 publicContents: []string{ | 70 publicContents: []string{ |
71 environs.MongoStoragePath("foo", version.CurrentArch()), | 71 environs.MongoStoragePath("foo", version.CurrentArch()), |
72 }, | 72 }, |
73 urlpart: "http://juju-dist.s3.amazonaws.com", | 73 urlpart: "http://juju-dist.s3.amazonaws.com", |
74 }, | 74 }, |
75 } | 75 } |
LEFT | RIGHT |