Fix spec which can fail if the pipe is closed before flushing in the subprocess

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60567 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eregon 2017-10-29 16:18:50 +00:00
Родитель d51de2bd61
Коммит 1b17bd3e8f
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -23,6 +23,7 @@ describe "IO.popen" do
it "raises IOError when writing a read-only pipe" do
@io = IO.popen(ruby_cmd('puts "foo"'), "r")
lambda { @io.write('foo') }.should raise_error(IOError)
@io.read.should == "foo\n"
end
end