mirror of
https://github.com/github/rails.git
synced 2026-01-30 16:58:15 -05:00
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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user