class Mocha::ParameterMatchers::AnyParameters

Parameter matcher which always matches whatever the parameters.

def matches?(available_parameters)

Other tags:
    Private: -
def matches?(available_parameters)
  until available_parameters.empty?
    available_parameters.shift
  end
  true
end

def mocha_inspect

Other tags:
    Private: -
def mocha_inspect
  'any_parameters'
end