module Mocha::ParameterMatchers

def Not(matcher) # rubocop:disable Naming/MethodName

Other tags:
    Example: Actual parameter does include the value +1+. -
    Example: Actual parameter does not include the value +1+. -

Other tags:
    See: Expectation#with -

Returns:
  • (Not) - parameter matcher.

Parameters:
  • matcher (Base) -- matcher whose logic to invert.
def Not(matcher) # rubocop:disable Naming/MethodName
  Not.new(matcher)
end