summaryrefslogtreecommitdiff
path: root/spec/unit/provider/script_spec.rb
diff options
context:
space:
mode:
authorClaire McQuin <mcquin@users.noreply.github.com>2014-11-07 14:48:12 -0800
committerClaire McQuin <mcquin@users.noreply.github.com>2014-11-07 14:48:12 -0800
commit1888a8a9c5cbc1bdcfb1d9aa919a911c72cbbff4 (patch)
tree2e3a93f98865ad7091fdd24319b1aba6d03dcc70 /spec/unit/provider/script_spec.rb
parentbf6340a113dd0c37e2084c70007d201742f11e9d (diff)
parent51430f7f2c25773f5ad3c05015eed95d315f798d (diff)
downloadchef-1888a8a9c5cbc1bdcfb1d9aa919a911c72cbbff4.tar.gz
Merge pull request #2324 from opscode/mcquin/rspec-3
Update to RSpec 3
Diffstat (limited to 'spec/unit/provider/script_spec.rb')
-rw-r--r--spec/unit/provider/script_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/provider/script_spec.rb b/spec/unit/provider/script_spec.rb
index 7dc8588397..4979475b79 100644
--- a/spec/unit/provider/script_spec.rb
+++ b/spec/unit/provider/script_spec.rb
@@ -42,7 +42,7 @@ describe Chef::Provider::Script, "action_run" do
it "unlinks the tempfile when finished" do
tempfile_path = @provider.script_file.path
@provider.unlink_script_file
- expect(File.exist?(tempfile_path)).to be_false
+ expect(File.exist?(tempfile_path)).to be_falsey
end
it "sets the owner and group for the script file" do