thoughtbot--shoulda-matchers/lib/shoulda/matchers/integrations/test_frameworks/test_unit.rb

36 lines
628 B
Ruby

module Shoulda
module Matchers
module Integrations
module TestFrameworks
class TestUnit
Integrations.register_test_framework(self, :test_unit)
def validate!
end
def include(*modules)
test_case_class.class_eval do
include(*modules)
extend(*modules)
end
end
def n_unit?
true
end
def present?
true
end
private
def test_case_class
::Test::Unit::TestCase
end
end
end
end
end
end