mirror of
https://github.com/github/rails.git
synced 2026-01-31 01:08:19 -05:00
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8040 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
13 lines
250 B
Ruby
13 lines
250 B
Ruby
module ActiveSupport
|
|
module Testing
|
|
module Default
|
|
def run(*args)
|
|
#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
|
|
end
|
|
end
|
|
|