aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/testing/default.rb
blob: 0cb0eea7d201310dd2a251535e4cb39cf11bfc07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module ActiveSupport
  module Testing
    module Default
      def run(*args)
        return if method_name == :default_test
        super
      end
    end
  end
end