module Rspec::Mocks::ArgumentMatchers

def no_args

Passes if no arguments are passed along with the message

object.should_receive(:message).with(no_args)
:call-seq:
def no_args
  NoArgsMatcher.new
end