aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/testing/default.rb
blob: d97a610c7941e192e4bd2b6ad024542b195e575e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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