class Shoulda::Matchers::Integrations::TestFrameworks::ActiveSupportTestCase

@private

Attributes

configuration[R]

Public Instance Methods

include(*modules, **_options) click to toggle source
# File lib/shoulda/matchers/integrations/test_frameworks/active_support_test_case.rb, line 12
def include(*modules, **_options)
  test_case_class.include(*modules)
end
n_unit?() click to toggle source
# File lib/shoulda/matchers/integrations/test_frameworks/active_support_test_case.rb, line 16
def n_unit?
  true
end
present?() click to toggle source
# File lib/shoulda/matchers/integrations/test_frameworks/active_support_test_case.rb, line 20
def present?
  true
end
validate!() click to toggle source
# File lib/shoulda/matchers/integrations/test_frameworks/active_support_test_case.rb, line 9
def validate!
end

Private Instance Methods

test_case_class() click to toggle source
# File lib/shoulda/matchers/integrations/test_frameworks/active_support_test_case.rb, line 30
def test_case_class
  ActiveSupport::TestCase
end