aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/test_case.rb
blob: 67cde1556c0751d5bef5967e2b19ca63a84aa5e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'test/unit/testcase'
require 'active_support/testing/setup_and_teardown'
require 'active_support/testing/default'

# TODO: move to core_ext
class Test::Unit::TestCase #:nodoc:
  include ActiveSupport::Testing::SetupAndTeardown
end

module ActiveSupport
  class TestCase < Test::Unit::TestCase
  end
end