mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/test/unit.rb: Add option for hiding skip messages when test
ends. #4657 * test/testunit/test_hideskip.rb, test/testunit/test4test_hideskip.rb: test for above. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31502 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f47ff4821d
commit
64495a2f85
4 changed files with 40 additions and 0 deletions
|
@ -1,3 +1,11 @@
|
|||
Tue May 10 14:50:32 2011 Shota Fukumori <sorah@tubusu.net>
|
||||
|
||||
* lib/test/unit.rb: Add option for hiding skip messages when test
|
||||
ends. #4657
|
||||
|
||||
* test/testunit/test_hideskip.rb, test/testunit/test4test_hideskip.rb:
|
||||
test for above.
|
||||
|
||||
Tue May 10 10:53:04 2011 Eric Hodel <drbrain@segment7.net>
|
||||
|
||||
* common.mk (rdoc): Add rdoc-coverage rule
|
||||
|
|
|
@ -103,6 +103,10 @@ module Test
|
|||
opts.on '--ruby VAL', "Path to ruby; It'll have used at -j option" do |a|
|
||||
options[:ruby] = a.split(/ /).reject(&:empty?)
|
||||
end
|
||||
|
||||
opts.on '-q', '--hide-skip', 'Hide skipped tests' do
|
||||
options[:hide_skip] = true
|
||||
end
|
||||
end
|
||||
|
||||
def non_options(files, options)
|
||||
|
@ -547,6 +551,7 @@ module Test
|
|||
end
|
||||
}
|
||||
end
|
||||
report.reject!{|r| r.start_with? "Skipped:" } if @opts[:hide_skip]
|
||||
result
|
||||
end
|
||||
|
||||
|
|
7
test/testunit/test4test_hideskip.rb
Normal file
7
test/testunit/test4test_hideskip.rb
Normal file
|
@ -0,0 +1,7 @@
|
|||
require 'test/unit'
|
||||
|
||||
class TestForTestHideSkip < Test::Unit::TestCase
|
||||
def test_skip
|
||||
skip
|
||||
end
|
||||
end
|
20
test/testunit/test_hideskip.rb
Normal file
20
test/testunit/test_hideskip.rb
Normal file
|
@ -0,0 +1,20 @@
|
|||
require 'test/unit'
|
||||
|
||||
class TestHideSkip < Test::Unit::TestCase
|
||||
def test_hideskip
|
||||
test_out, o = IO.pipe
|
||||
spawn(*@options[:ruby], "#{File.dirname(__FILE__)}/test4test_hideskip.rb",
|
||||
out: o, err: o)
|
||||
o.close
|
||||
assert_match(/assertions\/s.\n\n 1\) Skipped/,test_out.read)
|
||||
test_out.close
|
||||
|
||||
test_out, o = IO.pipe
|
||||
spawn(*@options[:ruby], "#{File.dirname(__FILE__)}/test4test_hideskip.rb",
|
||||
"--hide-skip", out: o, err: o)
|
||||
o.close
|
||||
assert_match(/assertions\/s.\n\n1 tests, 0 assertions, 0 failures, 0 errors, 1 skips/,
|
||||
test_out.read)
|
||||
test_out.close
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue