module Mocha::ParameterMatchers

def any_of(*matchers)

Other tags:
    Example: Neither parameter matcher matches. -
    Example: The other parameter matcher matches. -
    Example: One parameter matcher matches. -

Other tags:
    See: Expectation#with -

Returns:
  • (AnyOf) - parameter matcher.

Parameters:
  • matchers (*Array) -- parameter matchers.
def any_of(*matchers)
  AnyOf.new(*matchers)
end