From 56fec2f26906f996c3eb40d55fd74276928e478b Mon Sep 17 00:00:00 2001 From: Michael Koziarski Date: Fri, 26 Oct 2007 23:24:10 +0000 Subject: Make Default Test work with both ruby 1.8.4 and 1.8.6. [DrMark] Closes #10003 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8040 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/lib/active_support/testing/default.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'activesupport/lib') diff --git a/activesupport/lib/active_support/testing/default.rb b/activesupport/lib/active_support/testing/default.rb index 0cb0eea7d2..d97a610c79 100644 --- a/activesupport/lib/active_support/testing/default.rb +++ b/activesupport/lib/active_support/testing/default.rb @@ -2,7 +2,8 @@ module ActiveSupport module Testing module Default def run(*args) - return if method_name == :default_test + #method_name appears to be a symbol on 1.8.4 and a string on 1.8.6 + return if @method_name.to_s == "default_test" super end end -- cgit v1.2.3