mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
7773a911f5
Patch by mame (Yusuke Endoh). [Feature #2643] [ruby-core:27790] * test/testunit/test_redefinition.rb: Test for above. * test/testunit/test4test_redefinition.rb: Ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36484 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
11 lines
191 B
Ruby
11 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
|