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

Delta Between Two Patch Sets: worker/provisioner/provisioner_test.go

Issue 6345084: all: rename service => worker (Closed)
Left Patch Set: Created 12 years, 8 months ago
Right Patch Set: all: rename service => worker Created 12 years, 8 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « worker/machiner/machiner_test.go ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 package provisioner_test 1 package provisioner_test
2 2
3 import ( 3 import (
4 "time" 4 "time"
5 5
6 . "launchpad.net/gocheck" 6 . "launchpad.net/gocheck"
7 "launchpad.net/juju-core/environs" 7 "launchpad.net/juju-core/environs"
8 "launchpad.net/juju-core/environs/dummy" 8 "launchpad.net/juju-core/environs/dummy"
9 "launchpad.net/juju-core/worker/provisioner"
10 "launchpad.net/juju-core/state" 9 "launchpad.net/juju-core/state"
11 "launchpad.net/juju-core/state/testing" 10 "launchpad.net/juju-core/state/testing"
12 coretesting "launchpad.net/juju-core/testing" 11 coretesting "launchpad.net/juju-core/testing"
12 "launchpad.net/juju-core/worker/provisioner"
13 "strings" 13 "strings"
14 stdtesting "testing" 14 stdtesting "testing"
15 ) 15 )
16 16
17 func TestPackage(t *stdtesting.T) { 17 func TestPackage(t *stdtesting.T) {
18 coretesting.ZkTestPackage(t) 18 coretesting.ZkTestPackage(t)
19 } 19 }
20 20
21 type ProvisionerSuite struct { 21 type ProvisionerSuite struct {
22 coretesting.LoggingSuite 22 coretesting.LoggingSuite
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 err = s.fixEnvironment() 435 err = s.fixEnvironment()
436 c.Assert(err, IsNil) 436 c.Assert(err, IsNil)
437 437
438 // create a third machine 438 // create a third machine
439 m, err = s.State.AddMachine() 439 m, err = s.State.AddMachine()
440 c.Assert(err, IsNil) 440 c.Assert(err, IsNil)
441 441
442 // the PA should create it using the new environment 442 // the PA should create it using the new environment
443 s.checkStartInstance(c, m) 443 s.checkStartInstance(c, m)
444 } 444 }
LEFTRIGHT

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