jstd-runner 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/jstd-runner/runner.rb +0 -1
- data/lib/jstd-runner/version.rb +1 -1
- data/spec/jstd-runner/runner_spec.rb +1 -1
- metadata +1 -1
data/lib/jstd-runner/runner.rb
CHANGED
data/lib/jstd-runner/version.rb
CHANGED
@@ -15,7 +15,7 @@ module JstdRunner
|
|
15
15
|
runner.stub!(:browser).and_return(browser)
|
16
16
|
|
17
17
|
server = mock(Server, :host => "localhost", :port => 4224)
|
18
|
-
Server.should_receive(:new).with(4224).and_return(server)
|
18
|
+
Server.should_receive(:new).with(4224, nil).and_return(server)
|
19
19
|
server.should_receive(:start)
|
20
20
|
server.should_receive(:monitor).with(10)
|
21
21
|
|