class Shoulda::Matchers::Integrations::TestFrameworks::TestUnit
@private
Public Instance Methods
Source
# File lib/shoulda/matchers/integrations/test_frameworks/test_unit.rb, line 12 def include(*modules, **_options) test_case_class.class_eval do include(*modules) extend(*modules) end end
Source
# File lib/shoulda/matchers/integrations/test_frameworks/test_unit.rb, line 19 def n_unit? true end
Source
# File lib/shoulda/matchers/integrations/test_frameworks/test_unit.rb, line 23 def present? true end
Source
# File lib/shoulda/matchers/integrations/test_frameworks/test_unit.rb, line 9 def validate! end
Private Instance Methods
Source
# File lib/shoulda/matchers/integrations/test_frameworks/test_unit.rb, line 29 def test_case_class ::Test::Unit::TestCase end