1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
require 'mocha/parameter_matchers/base'
module Mocha
module ParameterMatchers
# Matches if +matcher+ does *not* match.
#
# @param [Base] matcher matcher whose logic to invert.
# @return [Not] parameter matcher.
#
# @see Expectation#with
#
# @example Actual parameter does not include the value +1+.
# object = mock()
# object.expects(:method_1).with(Not(includes(1)))
# object.method_1([0, 2, 3])
# # no error raised
#
# @example Actual parameter does include the value +1+.
# object = mock()
# object.expects(:method_1).with(Not(includes(1)))
# object.method_1([0, 1, 2, 3])
# # error raised, because method_1 was not called with object not including 1
#
def Not(matcher) # rubocop:disable Naming/MethodName
Not.new(matcher)
end
# Parameter matcher which inverts the logic of the specified matcher using a logical NOT operation.
class Not < Base
# @private
def initialize(matcher)
@matcher = matcher
end
# @private
def matches?(available_parameters)
parameter = available_parameters.shift
!@matcher.matches?([parameter])
end
# @private
def mocha_inspect
"Not(#{@matcher.mocha_inspect})"
end
end
end
end
|