2014-05-17 02:26:51 -04:00
|
|
|
$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib"
|
|
|
|
|
2011-09-06 08:20:17 -04:00
|
|
|
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
|