module RSpec::Mocks::ArgumentMatchers

def no_args

expect(object).to receive(:message).with(no_args)
@example

Matches no arguments.
def no_args
  NoArgsMatcher::INSTANCE
end