aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/testing/default.rb
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2007-10-26 23:24:10 +0000
committerMichael Koziarski <michael@koziarski.com>2007-10-26 23:24:10 +0000
commit56fec2f26906f996c3eb40d55fd74276928e478b (patch)
treee5ab66cc18871bf7a4dbe39bacb217f6ad850942 /activesupport/lib/active_support/testing/default.rb
parent2a74d71e49604e21e03a002d38f0c68d0be81574 (diff)
downloadrails-56fec2f26906f996c3eb40d55fd74276928e478b.tar.gz
rails-56fec2f26906f996c3eb40d55fd74276928e478b.tar.bz2
rails-56fec2f26906f996c3eb40d55fd74276928e478b.zip
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
Diffstat (limited to 'activesupport/lib/active_support/testing/default.rb')
-rw-r--r--activesupport/lib/active_support/testing/default.rb3
1 files changed, 2 insertions, 1 deletions
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