1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62931 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eregon 2018-03-26 20:48:21 +00:00
parent 6c2b589865
commit 9245e097ec
7 changed files with 108 additions and 64 deletions

View file

@ -26,7 +26,7 @@ describe :process_spawn_does_not_close_std_streams, shared: true do
code = "STDERR.puts 'hello'"
cmd = "Process.wait Process.spawn(#{ruby_cmd(code).inspect}, #{@options.inspect})"
ruby_exe(cmd, args: "2> #{@output}")
File.binread(@output).should == "hello#{newline}"
File.binread(@output).should =~ /hello#{newline}/
end
end
end