summaryrefslogtreecommitdiff
path: root/spec/ruby/core/io/shared/write.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/io/shared/write.rb')
-rw-r--r--spec/ruby/core/io/shared/write.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/io/shared/write.rb b/spec/ruby/core/io/shared/write.rb
index bca96da81c..140eeb04ab 100644
--- a/spec/ruby/core/io/shared/write.rb
+++ b/spec/ruby/core/io/shared/write.rb
@@ -85,9 +85,9 @@ describe :io_write, shared: true do
@r.read.should == "foo"
end
- it "raises Errno::EPIPE if the read end is closed" do
+ it "raises Errno::EPIPE if the read end is closed and does not die from SIGPIPE" do
@r.close
- -> { @w.send(@method, "foo") }.should raise_error(Errno::EPIPE, "Broken pipe")
+ -> { @w.send(@method, "foo") }.should raise_error(Errno::EPIPE, /Broken pipe/)
end
end
end