Files
rails/activesupport/lib/active_support/testing/default.rb
2007-10-26 23:24:10 +00:00

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