mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
f8c6a5dc02
from stdlib when running with test-all. [Feature #9711][ruby-core:61890] * test/testunit/*.rb: ditto. * test/lib: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
17 lines
249 B
Ruby
17 lines
249 B
Ruby
$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib"
|
|
|
|
require 'test/unit'
|
|
|
|
class TestForTestHideSkip < Test::Unit::TestCase
|
|
def test_c
|
|
skip "do nothing"
|
|
end
|
|
|
|
def test_b
|
|
assert_equal true, false
|
|
end
|
|
|
|
def test_a
|
|
raise
|
|
end
|
|
end
|