Sha256: cfdbeabd2c820556f80bf67a1bb4cac8254f6809c09e843f8563b44850912ba3
Contents?: true
Size: 396 Bytes
Versions: 12
Compression:
Stored size: 396 Bytes
Contents
module RR module Expectations class AnyArgumentExpectation < ArgumentEqualityExpectation #:nodoc: def initialize super([], {}) end def exact_match?(arguments, keyword_arguments) false end def wildcard_match?(arguments, keyword_arguments) true end def ==(other) other.is_a?(self.class) end end end end
Version data entries
12 entries across 12 versions & 1 rubygems