Sha256: 684c9f9272d245dab0d6ca353481764cca02adcc68ff7da7bc6bd958abe6b680
Contents?: true
Size: 778 Bytes
Versions: 61
Compression:
Stored size: 778 Bytes
Contents
require 'mocha/parameter_matchers/base' module Mocha module ParameterMatchers # Matches any object. # # @return [Anything] parameter matcher. # # @see Expectation#with # # @example Any object will match. # object = mock() # object.expects(:method_1).with(anything) # object.method_1('foo') # object.method_1(789) # object.method_1(:bar) # # no error raised def anything Anything.new end # Parameter matcher which always matches a single parameter. class Anything < Base # @private def matches?(available_parameters) available_parameters.shift return true end # @private def mocha_inspect "anything" end end end end
Version data entries
61 entries across 50 versions & 5 rubygems