summaryrefslogtreecommitdiff
path: root/spec/unit/config_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/config_spec.rb
parentb5c9c6afdfd83fe3f1bf4c991daffeff94b49750 (diff)
downloadchef-b19b7d000887209f9d8dc1dc6aa468a0497a7391.tar.gz
s/stub!/stub/g
fix deprecation warnings
Diffstat (limited to 'spec/unit/config_spec.rb')
-rw-r--r--spec/unit/config_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/unit/config_spec.rb b/spec/unit/config_spec.rb
index 2bf003bbdb..0f9bfce4aa 100644
--- a/spec/unit/config_spec.rb
+++ b/spec/unit/config_spec.rb
@@ -99,8 +99,8 @@ describe Chef::Config do
describe "class method: manage_secret_key" do
before do
- Chef::FileCache.stub!(:load).and_return(true)
- Chef::FileCache.stub!(:has_key?).with("chef_server_cookie_id").and_return(false)
+ Chef::FileCache.stub(:load).and_return(true)
+ Chef::FileCache.stub(:has_key?).with("chef_server_cookie_id").and_return(false)
end
it "should generate and store a chef server cookie id" do
@@ -110,7 +110,7 @@ describe Chef::Config do
describe "when the filecache has a chef server cookie id key" do
before do
- Chef::FileCache.stub!(:has_key?).with("chef_server_cookie_id").and_return(true)
+ Chef::FileCache.stub(:has_key?).with("chef_server_cookie_id").and_return(true)
end
it "should not generate and store a chef server cookie id" do
@@ -132,7 +132,7 @@ describe Chef::Config do
it "should return a windows path on windows systems" do
platform_mock :windows do
path = "/etc/chef/cookbooks"
- ENV.stub!(:[]).with('SYSTEMDRIVE').and_return('C:')
+ ENV.stub(:[]).with('SYSTEMDRIVE').and_return('C:')
# match on a regex that looks for the base path with an optional
# system drive at the beginning (c:)
# system drive is not hardcoded b/c it can change and b/c it is not present on linux systems