Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(728)

Unified Diff: environs/jujutest/livetests.go

Issue 6851043: environs/jujutest: further refinement
Patch Set: environs/jujutest: further refinement Created 12 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « environs/ec2/local_test.go ('k') | environs/jujutest/tests.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: environs/jujutest/livetests.go
=== modified file 'environs/jujutest/livetests.go'
--- environs/jujutest/livetests.go 2012-11-13 09:20:28 +0000
+++ environs/jujutest/livetests.go 2012-11-13 11:56:55 +0000
@@ -21,8 +21,8 @@
type LiveTests struct {
coretesting.LoggingSuite
- // Config holds the configuration for opening an environment.
- Config *config.Config
+ // Config holds the configuration attributes for opening an environment.
+ Config map[string]interface{}
// Env holds the currently opened environment.
Env environs.Environ
@@ -44,8 +44,8 @@
func (t *LiveTests) SetUpSuite(c *C) {
t.LoggingSuite.SetUpSuite(c)
- e, err := environs.New(t.Config)
- c.Assert(err, IsNil, Commentf("opening environ %#v", t.Config.AllAttrs()))
+ e, err := environs.NewFromAttrs(t.Config)
+ c.Assert(err, IsNil, Commentf("opening environ %#v", t.Config))
c.Assert(e, NotNil)
t.Env = e
c.Logf("environment configuration: %#v", publicAttrs(e))
« no previous file with comments | « environs/ec2/local_test.go ('k') | environs/jujutest/tests.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b