Module ActiveSupport::Testing::Default
In: vendor/rails/activesupport/lib/active_support/testing/default.rb

Methods

run  

Public Instance methods

[Source]

   # File vendor/rails/activesupport/lib/active_support/testing/default.rb, line 4
4:       def run(*args)
5:         #method_name appears to be a symbol on 1.8.4 and a string on 1.8.6
6:         return if @method_name.to_s == "default_test"
7:         super
8:       end

[Validate]