LEFT | RIGHT |
(Both sides are equal) |
1 package jujutest | 1 package jujutest |
2 | 2 |
3 import ( | 3 import ( |
4 . "launchpad.net/gocheck" | 4 . "launchpad.net/gocheck" |
5 "launchpad.net/juju/go/environs" | 5 "launchpad.net/juju/go/environs" |
6 "launchpad.net/juju/go/state" | 6 "launchpad.net/juju/go/state" |
7 "time" | 7 "time" |
8 ) | 8 ) |
9 | 9 |
10 // InvalidStateInfo holds information about no state - it will always give | 10 // InvalidStateInfo holds information about no state - it will always give |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 err := t.Env.Destroy(nil) | 91 err := t.Env.Destroy(nil) |
92 c.Check(err, IsNil) | 92 c.Check(err, IsNil) |
93 t.Env = nil | 93 t.Env = nil |
94 } | 94 } |
95 | 95 |
96 func (t *LiveTests) SetUpTest(*C) { | 96 func (t *LiveTests) SetUpTest(*C) { |
97 } | 97 } |
98 | 98 |
99 func (t *LiveTests) TearDownTest(*C) { | 99 func (t *LiveTests) TearDownTest(*C) { |
100 } | 100 } |
LEFT | RIGHT |