mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fca2ac964d
* test/testunit/test_hideskip.rb (TestHideSkip#test_hideskip): MiniTest#puke now reports Skipped messages only if verbose mode. * test/testunit/test_sorting.rb (TestTestUnitSorting#test_sorting): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35577 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
17 lines
434 B
Ruby
17 lines
434 B
Ruby
require 'test/unit'
|
|
|
|
class TestTestUnitSorting < Test::Unit::TestCase
|
|
def test_sorting
|
|
test_out, o = IO.pipe
|
|
spawn(*@options[:ruby], "#{File.dirname(__FILE__)}/test4test_sorting.rb",
|
|
"--verbose", out: o, err: o)
|
|
o.close
|
|
result = test_out.read
|
|
|
|
assert_match(/^ 1\) Skipped:/, result)
|
|
assert_match(/^ 2\) Failure:/, result)
|
|
assert_match(/^ 3\) Error:/, result)
|
|
|
|
test_out.close
|
|
end
|
|
end
|