LEFT | RIGHT |
1 package ec2 | 1 package ec2 |
2 | 2 |
3 import ( | 3 import ( |
4 "launchpad.net/goamz/aws" | 4 "launchpad.net/goamz/aws" |
5 . "launchpad.net/gocheck" | 5 . "launchpad.net/gocheck" |
6 "launchpad.net/juju/go/environs" | 6 "launchpad.net/juju/go/environs" |
7 "os" | 7 "os" |
8 "strings" | 8 "strings" |
9 ) | 9 ) |
10 | 10 |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 return | 177 return |
178 } | 178 } |
179 e, err := envs.Open("testenv") | 179 e, err := envs.Open("testenv") |
180 c.Assert(err, IsNil) | 180 c.Assert(err, IsNil) |
181 c.Assert(e, NotNil) | 181 c.Assert(e, NotNil) |
182 c.Assert(e, FitsTypeOf, (*environ)(nil), Commentf("environ %q", t.env)) | 182 c.Assert(e, FitsTypeOf, (*environ)(nil), Commentf("environ %q", t.env)) |
183 tconfig := baseConfigResult | 183 tconfig := baseConfigResult |
184 t.mutate(&tconfig) | 184 t.mutate(&tconfig) |
185 c.Check(e.(*environ).config, DeepEquals, &tconfig, Commentf("environ %q"
, t.env)) | 185 c.Check(e.(*environ).config, DeepEquals, &tconfig, Commentf("environ %q"
, t.env)) |
186 } | 186 } |
LEFT | RIGHT |