mirror of
https://github.com/github/rails.git
synced 2026-02-08 21:25:19 -05:00
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8022 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
12 lines
168 B
Ruby
12 lines
168 B
Ruby
module ActiveSupport
|
|
module Testing
|
|
module Default
|
|
def run(*args)
|
|
return if method_name == :default_test
|
|
super
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|