# File lib/flexmock/expectation_director.rb, line 38 38: def call(args, call_record=nil) 39: exp = find_expectation(*args) 40: call_record.expectation = exp if call_record 41: FlexMock.check( 42: "no matching handler found for " + FlexMock.format_call(@sym, args)) { ! exp.nil? } 43: exp.verify_call(*args) 44: end