instiki/vendor/rails/activesupport/lib/active_support/test_case.rb
Jacques Distler 5292899c9a Rails 2.1 RC1
Updated Instiki to Rails 2.1 RC1 (aka 2.0.991).
2008-05-17 23:22:34 -05:00

14 lines
311 B
Ruby

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