mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
22 lines
625 B
Ruby
22 lines
625 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
|
|
# test "verify something" do
|
|
# ...
|
|
# end
|
|
def self.test(name, &block)
|
|
test_name = "test_#{name.gsub(/\s+/,'_')}".to_sym
|
|
defined = instance_method(test_name) rescue false
|
|
raise "#{test_name} is already defined in #{self}" if defined
|
|
define_method(test_name, &block)
|
|
end
|
|
end
|
|
end
|