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

* test/testunit/test_rake_integration.rb (test_with_rake_runner):

use assert_in_out_err for suppress messages.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30988 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagachika 2011-02-28 14:56:01 +00:00
parent 4a57c5e7d9
commit 667833711b
2 changed files with 11 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Mon Feb 28 23:52:13 2011 CHIKANAGA Tomoyuki <nagachika00@gmail.com>
* test/testunit/test_rake_integration.rb (test_with_rake_runner):
use assert_in_out_err for suppress messages.
Mon Feb 28 22:48:56 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* win32/win32.c (rb_w32_spawn): use shell if a commandline contain

View file

@ -24,7 +24,12 @@ class FooTest; end
eotest
end
assert_ruby_status(%w{ -w } + [RAKE_LOADER, filename])
args = %w{ -w } + [RAKE_LOADER, filename]
bug3972 = "[ruby-core:32864]"
status = assert_in_out_err(args, "",
/0 tests, 0 assertions, 0 failures, 0 errors, 0 skips/,
[], bug3972)
assert_equal(true, status.success?, bug3972)
end
end
end