mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
178bc9a0e7
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47889 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
17 lines
457 B
Ruby
17 lines
457 B
Ruby
require 'test/unit'
|
|
|
|
class TestTestUnitSorting < Test::Unit::TestCase
|
|
def test_sorting
|
|
result = sorting("--show-skip")
|
|
assert_match(/^ 1\) Skipped:/, result)
|
|
assert_match(/^ 2\) Failure:/, result)
|
|
assert_match(/^ 3\) Error:/, result)
|
|
end
|
|
|
|
def sorting(*args)
|
|
IO.popen([*@options[:ruby], "#{File.dirname(__FILE__)}/test4test_sorting.rb",
|
|
"--verbose", *args], err: [:child, :out]) {|f|
|
|
f.read
|
|
}
|
|
end
|
|
end
|