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

test/testunit: fix for recent minitest

* 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
This commit is contained in:
nobu 2012-05-07 18:54:09 +00:00
parent ec76e156fe
commit fca2ac964d
3 changed files with 11 additions and 5 deletions

View file

@ -4,7 +4,7 @@ class TestTestUnitSorting < Test::Unit::TestCase
def test_sorting
test_out, o = IO.pipe
spawn(*@options[:ruby], "#{File.dirname(__FILE__)}/test4test_sorting.rb",
out: o, err: o)
"--verbose", out: o, err: o)
o.close
result = test_out.read