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

Delta Between Two Patch Sets: worker/machiner/machiner_test.go

Issue 6345084: all: rename service => worker (Closed)
Left Patch Set: Created 12 years, 9 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 | « store/store_test.go ('k') | worker/provisioner/provisioner_test.go » ('j') | 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 machiner_test 1 package machiner_test
2 2
3 import ( 3 import (
4 . "launchpad.net/gocheck" 4 . "launchpad.net/gocheck"
5 "launchpad.net/juju-core/container" 5 "launchpad.net/juju-core/container"
6 "launchpad.net/juju-core/worker/machiner"
7 "launchpad.net/juju-core/state" 6 "launchpad.net/juju-core/state"
8 "launchpad.net/juju-core/state/testing" 7 "launchpad.net/juju-core/state/testing"
9 coretesting "launchpad.net/juju-core/testing" 8 coretesting "launchpad.net/juju-core/testing"
9 "launchpad.net/juju-core/worker/machiner"
10 stdtesting "testing" 10 stdtesting "testing"
11 "time" 11 "time"
12 ) 12 )
13 13
14 func TestPackage(t *stdtesting.T) { 14 func TestPackage(t *stdtesting.T) {
15 coretesting.ZkTestPackage(t) 15 coretesting.ZkTestPackage(t)
16 } 16 }
17 17
18 type MachinerSuite struct { 18 type MachinerSuite struct {
19 coretesting.LoggingSuite 19 coretesting.LoggingSuite
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 } 153 }
154 select { 154 select {
155 case a := <-d.action: 155 case a := <-d.action:
156 c.Assert(a, Equals, action) 156 c.Assert(a, Equals, action)
157 case <-time.After(timeout): 157 case <-time.After(timeout):
158 if action != "" { 158 if action != "" {
159 c.Fatalf("expected action %v got nothing", action) 159 c.Fatalf("expected action %v got nothing", action)
160 } 160 }
161 } 161 }
162 } 162 }
LEFTRIGHT

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