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

Unified Diff: environs/jujutest/livetests.go

Issue 6849044: environs/jujutest: simplify interface
Patch Set: environs/jujutest: simplify interface 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-10-19 12:34:32 +0000
+++ environs/jujutest/livetests.go 2012-11-13 09:20:28 +0000
@@ -20,9 +20,12 @@
// in the suite, stored in Env, and Destroyed after the suite has completed.
type LiveTests struct {
coretesting.LoggingSuite
- Environs *environs.Environs
- Name string
- Env environs.Environ
+
+ // Config holds the configuration for opening an environment.
+ Config *config.Config
+
+ // Env holds the currently opened environment.
+ Env environs.Environ
// Attempt holds a strategy for waiting until the environment
// becomes logically consistent.
@@ -41,8 +44,8 @@
func (t *LiveTests) SetUpSuite(c *C) {
t.LoggingSuite.SetUpSuite(c)
- e, err := t.Environs.Open(t.Name)
- c.Assert(err, IsNil, Commentf("opening environ %q", t.Name))
+ e, err := environs.New(t.Config)
+ c.Assert(err, IsNil, Commentf("opening environ %#v", t.Config.AllAttrs()))
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