aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/testing/default.rb
blob: a0bd6303c77c94dab23fad901ec0001979a5b352 (plain) (blame)
1
2
3
4
5
6
7
8
9
module ActiveSupport
  module Testing
    module Default #:nodoc:
      # Placeholder so test/unit ignores test cases without any tests.
      def default_test
      end
    end
  end
end