1 2 3 4 5 6 7 8 9 10 11 12 13
$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib" require 'test/unit' class TestForTestRedefinition < Test::Unit::TestCase def test_redefinition skip "do nothing (1)" end def test_redefinition skip "do nothing (2)" end end