summaryrefslogtreecommitdiff
path: root/spec/support/shared/functional/securable_resource.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/support/shared/functional/securable_resource.rb
parentb5c9c6afdfd83fe3f1bf4c991daffeff94b49750 (diff)
downloadchef-b19b7d000887209f9d8dc1dc6aa468a0497a7391.tar.gz
s/stub!/stub/g
fix deprecation warnings
Diffstat (limited to 'spec/support/shared/functional/securable_resource.rb')
-rw-r--r--spec/support/shared/functional/securable_resource.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/support/shared/functional/securable_resource.rb b/spec/support/shared/functional/securable_resource.rb
index 3952b783dc..48daf78ae3 100644
--- a/spec/support/shared/functional/securable_resource.rb
+++ b/spec/support/shared/functional/securable_resource.rb
@@ -482,7 +482,7 @@ shared_examples_for "a securable resource without existing target" do
it 'warns when mode tries to set owner bits but owner is not specified' do
@warn = []
- Chef::Log.stub!(:warn) { |msg| @warn << msg }
+ Chef::Log.stub(:warn) { |msg| @warn << msg }
resource.mode 0400
resource.run_action(:create)
@@ -492,7 +492,7 @@ shared_examples_for "a securable resource without existing target" do
it 'warns when mode tries to set group bits but group is not specified' do
@warn = []
- Chef::Log.stub!(:warn) { |msg| @warn << msg }
+ Chef::Log.stub(:warn) { |msg| @warn << msg }
resource.mode 0040
resource.run_action(:create)