class Object

Public Instance Methods

not_to(*args) click to toggle source
Calls superclass method
# File lib/rspec/mocks/minitest_integration.rb, line 49
def not_to(*args)
  ctx.assertions += 1
  super
end
to(*args) click to toggle source
Calls superclass method
# File lib/rspec/mocks/minitest_integration.rb, line 44
def to(*args)
  ctx.assertions += 1
  super
end
to_not(*args) click to toggle source
Calls superclass method
# File lib/rspec/mocks/minitest_integration.rb, line 54
def to_not(*args)
  ctx.assertions += 1
  super
end