* test/lib/test/unit/testcase.rb (method_added): hook methods
  should call super.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49134 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-01-04 02:15:03 +00:00
Родитель 49243b9944
Коммит cf0006ea2b
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -22,6 +22,7 @@ module Test
end end
def self.method_added(name) def self.method_added(name)
super
return unless name.to_s.start_with?("test_") return unless name.to_s.start_with?("test_")
@test_methods ||= {} @test_methods ||= {}
if @test_methods[name] if @test_methods[name]