1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/ruby/envutil.rb (Test::Unit::Assertions#assert_in_out_err):

return the exit status.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28430 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-06-25 01:07:29 +00:00
parent fdf5a3dd8d
commit 89a3e2ed7a
2 changed files with 5 additions and 1 deletions

View file

@ -1,4 +1,7 @@
Fri Jun 25 09:58:32 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
Fri Jun 25 10:07:14 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* test/ruby/envutil.rb (Test::Unit::Assertions#assert_in_out_err):
return the exit status.
* test/ruby/envutil.rb (EnvUtil#invoke_ruby): change the
environment of spawned process only.

View file

@ -198,6 +198,7 @@ module Test
else
assert_equal(test_stderr, stderr.lines.map {|l| l.chomp }, message)
end
status
end
end