mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
12 lines
191 B
Ruby
12 lines
191 B
Ruby
|
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
|