diff options
author | Akira Matsuda <ronnie@dio.jp> | 2012-06-06 21:56:27 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2012-06-06 22:00:43 +0900 |
commit | 7fe6002793fd14f57fc2d7bd4506c82afb18aec4 (patch) | |
tree | 6342945a792c72f4d1ff82b55fada5c1b3116ae3 /activesupport | |
parent | 9fb70033d36f467d4eb858e9fac1282a0394876a (diff) | |
download | rails-7fe6002793fd14f57fc2d7bd4506c82afb18aec4.tar.gz rails-7fe6002793fd14f57fc2d7bd4506c82afb18aec4.tar.bz2 rails-7fe6002793fd14f57fc2d7bd4506c82afb18aec4.zip |
MiniTest::Spec shipped with Ruby >= 1.9.3 always responds_to __name__
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/test_case.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/test_case.rb b/activesupport/lib/active_support/test_case.rb index 9a52c916ec..14ceb7072e 100644 --- a/activesupport/lib/active_support/test_case.rb +++ b/activesupport/lib/active_support/test_case.rb @@ -22,8 +22,7 @@ module ActiveSupport end Assertion = MiniTest::Assertion - alias_method :method_name, :name if method_defined? :name - alias_method :method_name, :__name__ if method_defined? :__name__ + alias_method :method_name, :__name__ $tags = {} def self.for_tag(tag) |