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
This commit is contained in:
Michael Koziarski
2007-10-26 23:24:10 +00:00
parent 2a74d71e49
commit 56fec2f269
2 changed files with 8 additions and 1 deletions

View File

@@ -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

View File

@@ -63,3 +63,9 @@ class AssertDifferenceTest < Test::Unit::TestCase
def default_test; end
end
end
# This should always pass
class NotTestingThingsTest < Test::Unit::TestCase
include ActiveSupport::Testing::Default
end