class Mocha::ParameterMatchers::AnyParameters
Parameter matcher which always matches whatever the parameters.
def matches?(available_parameters)
- Private:   -   
 
def matches?(available_parameters) until available_parameters.empty? available_parameters.shift end true end
def mocha_inspect
- Private:   -   
 
def mocha_inspect 'any_parameters' end