summaryrefslogtreecommitdiff
path: root/spec/mixlib/shellout_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/mixlib/shellout_spec.rb')
-rw-r--r--spec/mixlib/shellout_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/mixlib/shellout_spec.rb b/spec/mixlib/shellout_spec.rb
index 084e1b2..9814473 100644
--- a/spec/mixlib/shellout_spec.rb
+++ b/spec/mixlib/shellout_spec.rb
@@ -1064,8 +1064,8 @@ describe Mixlib::ShellOut do
# test for for_fd returning a valid File object, but close
# throwing EBADF.
it "should not throw an exception if fd.close throws EBADF" do
- fd = mock('File')
- fd.stub!(:close).at_least(:once).and_raise(Errno::EBADF)
+ fd = double('File')
+ fd.stub(:close).at_least(:once).and_raise(Errno::EBADF)
File.should_receive(:for_fd).at_least(:once).and_return(fd)
shellout = Mixlib::ShellOut.new()
shellout.instance_variable_set(:@process_status_pipe, [ 98, 99 ])