module RSpec::Mocks::ArgumentMatchers

def no_args

object.should_receive(:message).with(no_args)

@example

Matches no arguments.
def no_args
  NoArgsMatcher.new
end