mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
689333a0ba
* test/testunit/test_hideskip.rb (test_hideskip): reap zombie by reading with IO.popen instead of separated spawn and assert. * test/testunit/test_redefinition.rb (test_redefinition): ditto. * test/testunit/test_sorting.rb (test_sorting): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41421 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
16 lines
549 B
Ruby
16 lines
549 B
Ruby
require 'test/unit'
|
|
|
|
class TestHideSkip < Test::Unit::TestCase
|
|
def test_hideskip
|
|
assert_match(/assertions\/s.\n\n 1\) Skipped/, hideskip)
|
|
assert_match(/assertions\/s.\n\n 1\) Skipped/, hideskip("--show-skip"))
|
|
assert_match(/assertions\/s.\n\n1 tests, 0 assertions, 0 failures, 0 errors, 1 skips/, hideskip("--hide-skip"))
|
|
end
|
|
|
|
def hideskip(*args)
|
|
IO.popen([*@options[:ruby], "#{File.dirname(__FILE__)}/test4test_hideskip.rb",
|
|
"--verbose", *args], err: [:child, :out]) {|f|
|
|
f.read
|
|
}
|
|
end
|
|
end
|