Method: Object#should_not_receive

Defined in:
lib/extensions/mspec/mspec/mocks/object.rb

#should_not_receive(sym) ⇒ Object



12
13
14
15
# File 'lib/extensions/mspec/mspec/mocks/object.rb', line 12

def should_not_receive(sym)
  proxy = Mock.install_method self, sym
  proxy.exactly(0).times
end