Module: ActiveSupport::Testing::Default

Included in:
ActiveSupport::TestCase
Defined in:
lib/active_support/testing/default.rb

Instance Method Summary collapse

Instance Method Details

#run(*args) ⇒ Object



4
5
6
7
8
# File 'lib/active_support/testing/default.rb', line 4

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