class RSpec::Mocks::MessageExpectation

‘self` so that they can be chained together to form a fluent interface.
defined here can be used to configure how it behaves. The methods return
Represents an individual method stub or message expectation. The methods

def and_call_original

Returns:
  • (nil) - No further chaining is supported after this.

Other tags:
    Note: - This is only available on partial doubles.
def and_call_original
  block = lambda do |original, *args, &b|
    original.call(*args, &b)
  end
  block = block.ruby2_keywords if block.respond_to?(:ruby2_keywords)
  wrap_original(__method__, &block)
end

def and_invoke(first_proc, *procs, &_block)

Returns:
  • (nil) - No further chaining is supported after this.
def and_invoke(first_proc, *procs, &_block)
  raise_already_invoked_error_if_necessary(__method__)
  if negative?
    raise "`and_invoke` is not supported with negative message expectations"
  end
  if block_given?
    raise ArgumentError, "Implementation blocks aren't supported with `and_invoke`"
  end
  procs.unshift(first_proc)
  if procs.any? { |p| !p.respond_to?(:call) }
    raise ArgumentError, "Arguments to `and_invoke` must be callable."
  end
  @expected_received_count = [@expected_received_count, procs.size].max unless ignoring_args? || (@expected_received_count == 0 && @at_least)
  self.terminal_implementation_action = AndInvokeImplementation.new(procs)
  nil
end

def and_raise(*args)

Other tags:
    Note: -

Returns:
  • (nil) - No further chaining is supported after this.

Overloads:
  • and_raise(exception_instance)
  • and_raise(ExceptionClass, message)
  • and_raise(ExceptionClass)
  • and_raise
def and_raise(*args)
  raise_already_invoked_error_if_necessary(__method__)
  self.terminal_implementation_action = Proc.new { raise(*args) }
  nil
end

def and_return(first_value, *values, &_block)

Returns:
  • (nil) - No further chaining is supported after this.

Overloads:
  • and_return(first_value, second_value)
  • and_return(value)
def and_return(first_value, *values, &_block)
  raise_already_invoked_error_if_necessary(__method__)
  if negative?
    raise "`and_return` is not supported with negative message expectations"
  end
  if block_given?
    raise ArgumentError, "Implementation blocks aren't supported with `and_return`"
  end
  values.unshift(first_value)
  @expected_received_count = [@expected_received_count, values.size].max unless ignoring_args? || (@expected_received_count == 0 && @at_least)
  self.terminal_implementation_action = AndReturnImplementation.new(values)
  nil
end

def and_throw(*args)

Returns:
  • (nil) - No further chaining is supported after this.

Overloads:
  • and_throw(symbol, object)
  • and_throw(symbol)
def and_throw(*args)
  raise_already_invoked_error_if_necessary(__method__)
  self.terminal_implementation_action = Proc.new { throw(*args) }
  nil
end

def and_wrap_original(&block)

Returns:
  • (nil) - No further chaining is supported after this.

Other tags:
    Note: - This is only available on partial doubles.
def and_wrap_original(&block)
  wrap_original(__method__, &block)
end

def and_yield(*args, &block)

Returns:
  • (MessageExpectation) - self, to support further chaining.
def and_yield(*args, &block)
  raise_already_invoked_error_if_necessary(__method__)
  yield @eval_context = Object.new if block
  # Initialize args to yield now that it's being used, see also: comment
  # in constructor.
  @args_to_yield ||= []
  @args_to_yield << args
  self.initial_implementation_action = AndYieldImplementation.new(@args_to_yield, @eval_context, @error_generator)
  self
end

def at_least(n, &block)

Returns:
  • (MessageExpectation) - self, to support further chaining.
def at_least(n, &block)
  raise_already_invoked_error_if_necessary(__method__)
  set_expected_received_count :at_least, n
  if n == 0
    raise "at_least(0) has been removed, use allow(...).to receive(:message) instead"
  end
  self.inner_implementation_action = block
  self
end

def at_most(n, &block)

Returns:
  • (MessageExpectation) - self, to support further chaining.
def at_most(n, &block)
  raise_already_invoked_error_if_necessary(__method__)
  self.inner_implementation_action = block
  set_expected_received_count :at_most, n
  self
end

def exactly(n, &block)

Returns:
  • (MessageExpectation) - self, to support further chaining.
def exactly(n, &block)
  raise_already_invoked_error_if_necessary(__method__)
  self.inner_implementation_action = block
  set_expected_received_count :exactly, n
  self
end

def never

Returns:
  • (MessageExpectation) - self, to support further chaining.
def never
  error_generator.raise_double_negation_error("expect(obj)") if negative?
  @expected_received_count = 0
  self
end

def once(&block)

Returns:
  • (MessageExpectation) - self, to support further chaining.
def once(&block)
  self.inner_implementation_action = block
  set_expected_received_count :exactly, 1
  self
end

def ordered(&block)

Returns:
  • (MessageExpectation) - self, to support further chaining.
def ordered(&block)
  if type == :stub
    RSpec.warning(
      "`allow(...).to receive(..).ordered` is not supported and will " \
      "have no effect, use `and_return(*ordered_values)` instead."
    )
  end
  self.inner_implementation_action = block
  additional_expected_calls.times do
    @order_group.register(self)
  end
  @ordered = true
  self
end

def thrice(&block)

Returns:
  • (MessageExpectation) - self, to support further chaining.
def thrice(&block)
  self.inner_implementation_action = block
  set_expected_received_count :exactly, 3
  self
end

def times(&block)

Returns:
  • (MessageExpectation) - self, to support further chaining.
def times(&block)
  self.inner_implementation_action = block
  self
end

def to_s

Returns:
  • (String) - a nice representation of the message expectation
def to_s
  args_description = error_generator.method_call_args_description(@argument_list_matcher.expected_args, "", "") { true }
  args_description = "(#{args_description})" unless args_description.start_with?("(")
  "#<#{self.class} #{error_generator.intro}.#{message}#{args_description}>"
end

def twice(&block)

Returns:
  • (MessageExpectation) - self, to support further chaining.
def twice(&block)
  self.inner_implementation_action = block
  set_expected_received_count :exactly, 2
  self
end

def with(*args, &block)

Returns:
  • (MessageExpectation) - self, to support further chaining.
def with(*args, &block)
  raise_already_invoked_error_if_necessary(__method__)
  if args.empty?
    raise ArgumentError,
          "`with` must have at least one argument. Use `no_args` matcher to set the expectation of receiving no arguments."
  end
  self.inner_implementation_action = block
  @argument_list_matcher = ArgumentListMatcher.new(*args)
  self
end