class Shoulda::Matchers::Integrations::TestFrameworks::Minitest5

@private

Public Instance Methods

include(*modules, **_options) click to toggle source
# File lib/shoulda/matchers/integrations/test_frameworks/minitest_5.rb, line 13
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/minitest_5.rb, line 20
def n_unit?
  true
end
present?() click to toggle source
# File lib/shoulda/matchers/integrations/test_frameworks/minitest_5.rb, line 24
def present?
  true
end
validate!() click to toggle source
# File lib/shoulda/matchers/integrations/test_frameworks/minitest_5.rb, line 10
def validate!
end

Private Instance Methods

test_case_class() click to toggle source
# File lib/shoulda/matchers/integrations/test_frameworks/minitest_5.rb, line 30
def test_case_class
  Minitest::Test
end