aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2012-06-06 21:56:27 +0900
committerAkira Matsuda <ronnie@dio.jp>2012-06-06 22:00:43 +0900
commit7fe6002793fd14f57fc2d7bd4506c82afb18aec4 (patch)
tree6342945a792c72f4d1ff82b55fada5c1b3116ae3
parent9fb70033d36f467d4eb858e9fac1282a0394876a (diff)
downloadrails-7fe6002793fd14f57fc2d7bd4506c82afb18aec4.tar.gz
rails-7fe6002793fd14f57fc2d7bd4506c82afb18aec4.tar.bz2
rails-7fe6002793fd14f57fc2d7bd4506c82afb18aec4.zip
MiniTest::Spec shipped with Ruby >= 1.9.3 always responds_to __name__
-rw-r--r--activesupport/lib/active_support/test_case.rb3
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)