vendor/rails/activesupport/lib/active_support/test_case.rb in radiant-0.6.9 vs vendor/rails/activesupport/lib/active_support/test_case.rb in radiant-0.7.0

- old
+ new

@@ -1,5 +1,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 - include ActiveSupport::Testing::Default end -end \ No newline at end of file +end