module Rspec::Mocks::ArgumentMatchers

def any_args

really a more explicit variation of object.should_receive(:message)
Passes if object receives :message with any args at all. This is

object.should_receive(:message).with(any_args())
:call-seq:
def any_args
  AnyArgsMatcher.new
end