class RSpec::Mocks::MessageExpectation

def never

car.should_receive(:stop).never

@example

Expect a message not to be received at all.
def never
  ErrorGenerator.raise_double_negation_error("expect(obj)") if negative?
  @expected_received_count = 0
  self
end