summaryrefslogtreecommitdiff
path: root/spec/unit/provider/breakpoint_spec.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2014-01-29 14:17:47 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2014-01-29 14:17:47 -0800
commitb19b7d000887209f9d8dc1dc6aa468a0497a7391 (patch)
tree68d1eb6c136df20c2800f1dddb4e2c1ed5d75a42 /spec/unit/provider/breakpoint_spec.rb
parentb5c9c6afdfd83fe3f1bf4c991daffeff94b49750 (diff)
downloadchef-b19b7d000887209f9d8dc1dc6aa468a0497a7391.tar.gz
s/stub!/stub/g
fix deprecation warnings
Diffstat (limited to 'spec/unit/provider/breakpoint_spec.rb')
-rw-r--r--spec/unit/provider/breakpoint_spec.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/unit/provider/breakpoint_spec.rb b/spec/unit/provider/breakpoint_spec.rb
index 977624597a..ebdefd9bea 100644
--- a/spec/unit/provider/breakpoint_spec.rb
+++ b/spec/unit/provider/breakpoint_spec.rb
@@ -26,7 +26,7 @@ describe Chef::Provider::Breakpoint do
@events = Chef::EventDispatch::Dispatcher.new
@run_context = Chef::RunContext.new(@node, {}, @events)
@collection = mock("resource collection")
- @run_context.stub!(:resource_collection).and_return(@collection)
+ @run_context.stub(:resource_collection).and_return(@collection)
@provider = Chef::Provider::Breakpoint.new(@resource, @run_context)
end
@@ -35,18 +35,18 @@ describe Chef::Provider::Breakpoint do
end
it "gets the iterator from @collection and pauses it" do
- Shell.stub!(:running?).and_return(true)
+ Shell.stub(:running?).and_return(true)
@iterator = mock("stepable_iterator")
- @collection.stub!(:iterator).and_return(@iterator)
+ @collection.stub(:iterator).and_return(@iterator)
@iterator.should_receive(:pause)
@provider.action_break
@resource.should be_updated
end
it "doesn't pause the iterator if chef-shell isn't running" do
- Shell.stub!(:running?).and_return(false)
+ Shell.stub(:running?).and_return(false)
@iterator = mock("stepable_iterator")
- @collection.stub!(:iterator).and_return(@iterator)
+ @collection.stub(:iterator).and_return(@iterator)
@iterator.should_not_receive(:pause)
@provider.action_break
end