class Shoulda::Matchers::Integrations::TestFrameworks::Rspec

@private

Public Instance Methods

include(*modules, **options) click to toggle source
# File lib/shoulda/matchers/integrations/test_frameworks/rspec.rb, line 12
def include(*modules, **options)
  ::RSpec.configure do |config|
    config.include(*modules, **options)
  end
end
n_unit?() click to toggle source
# File lib/shoulda/matchers/integrations/test_frameworks/rspec.rb, line 18
def n_unit?
  false
end
present?() click to toggle source
# File lib/shoulda/matchers/integrations/test_frameworks/rspec.rb, line 22
def present?
  true
end
validate!() click to toggle source
# File lib/shoulda/matchers/integrations/test_frameworks/rspec.rb, line 9
def validate!
end