Class: Mocha::UnexpectedInvocation

Inherits:
Object
  • Object
show all
Defined in:
lib/mocha/unexpected_invocation.rb

Instance Method Summary collapse

Constructor Details

#initialize(mock, symbol, *arguments) ⇒ UnexpectedInvocation

Returns a new instance of UnexpectedInvocation.



5
6
7
8
9
# File 'lib/mocha/unexpected_invocation.rb', line 5

def initialize(mock, symbol, *arguments)
  @mock = mock
  @method_matcher = MethodMatcher.new(symbol)
  @parameters_matcher = ParametersMatcher.new(arguments)
end

Instance Method Details

#to_sObject



11
12
13
14
# File 'lib/mocha/unexpected_invocation.rb', line 11

def to_s
  method_signature = "#{@mock.mocha_inspect}.#{@method_matcher.mocha_inspect}#{@parameters_matcher.mocha_inspect}"
  "unexpected invocation: #{method_signature}\n"
end