module RSpec::Mocks::ArgumentMatchers

def anything

Passes as long as there is an argument.

object.should_receive(:message).with(anything())
:call-seq:
def anything
  AnyArgMatcher.new(nil)
end