Sha256: fea975cbd0b0cb1c10d8dcc6e5244bc59a9cbb443006e72ceca6ac53a9e3d505
Contents?: true
Size: 351 Bytes
Versions: 80
Compression:
Stored size: 351 Bytes
Contents
module RR module Expectations class AnyArgumentExpectation < ArgumentEqualityExpectation #:nodoc: def initialize super end def exact_match?(*arguments) false end def wildcard_match?(*arguments) true end def ==(other) other.is_a?(self.class) end end end end
Version data entries
80 entries across 76 versions & 9 rubygems