зеркало из https://github.com/github/ruby.git
12 строки
191 B
Ruby
12 строки
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
|