LEFT | RIGHT |
1 package machiner_test | 1 package machiner_test |
2 | 2 |
3 import ( | 3 import ( |
4 . "launchpad.net/gocheck" | 4 . "launchpad.net/gocheck" |
5 "launchpad.net/juju-core/container" | 5 "launchpad.net/juju-core/container" |
6 "launchpad.net/juju-core/worker/machiner" | |
7 "launchpad.net/juju-core/state" | 6 "launchpad.net/juju-core/state" |
8 "launchpad.net/juju-core/state/testing" | 7 "launchpad.net/juju-core/state/testing" |
9 coretesting "launchpad.net/juju-core/testing" | 8 coretesting "launchpad.net/juju-core/testing" |
| 9 "launchpad.net/juju-core/worker/machiner" |
10 stdtesting "testing" | 10 stdtesting "testing" |
11 "time" | 11 "time" |
12 ) | 12 ) |
13 | 13 |
14 func TestPackage(t *stdtesting.T) { | 14 func TestPackage(t *stdtesting.T) { |
15 coretesting.ZkTestPackage(t) | 15 coretesting.ZkTestPackage(t) |
16 } | 16 } |
17 | 17 |
18 type MachinerSuite struct { | 18 type MachinerSuite struct { |
19 coretesting.LoggingSuite | 19 coretesting.LoggingSuite |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 } | 153 } |
154 select { | 154 select { |
155 case a := <-d.action: | 155 case a := <-d.action: |
156 c.Assert(a, Equals, action) | 156 c.Assert(a, Equals, action) |
157 case <-time.After(timeout): | 157 case <-time.After(timeout): |
158 if action != "" { | 158 if action != "" { |
159 c.Fatalf("expected action %v got nothing", action) | 159 c.Fatalf("expected action %v got nothing", action) |
160 } | 160 } |
161 } | 161 } |
162 } | 162 } |
LEFT | RIGHT |