class Shoulda::Matchers::Integrations::TestFrameworks::TestUnit

@private

Public Instance Methods

include(*modules, **options) click to toggle 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
n_unit?() click to toggle source
# File lib/shoulda/matchers/integrations/test_frameworks/test_unit.rb, line 19
def n_unit?
  true
end
present?() click to toggle source
# File lib/shoulda/matchers/integrations/test_frameworks/test_unit.rb, line 23
def present?
  true
end
validate!() click to toggle source
# File lib/shoulda/matchers/integrations/test_frameworks/test_unit.rb, line 9
def validate!
end

Private Instance Methods

test_case_class() click to toggle source
# File lib/shoulda/matchers/integrations/test_frameworks/test_unit.rb, line 29
def test_case_class
  ::Test::Unit::TestCase
end