module RSpec::Mocks::ArgumentMatchers

def any_args

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

@example

`object.should_receive(:message)`
Matches any args at all. Supports a more explicit variation of
def any_args
  AnyArgsMatcher.new
end