module RSpec::Mocks::ArgumentMatchers

def anything

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

Matches any argument at all.
def anything
  AnyArgMatcher::INSTANCE
end