module RSpec::Mocks::ArgumentMatchers

def anything

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

@example

Matches any argument at all.
def anything
  AnyArgMatcher.new(nil)
end