Sha256: e1ec39c4404d40526806a6ac7f7a8ef711f08140757bffa7d5d1aa6fa451fa12
Contents?: true
Size: 431 Bytes
Versions: 150
Compression:
Stored size: 431 Bytes
Contents
module Pact class NullExpectation def to_s "<No expectation>" end def ==(other_object) other_object.is_a? NullExpectation end def ===(other_object) other_object.is_a? NullExpectation end def eql?(other_object) self == other_object end def hash 2934820948209428748274238642672 end def empty? true end def nil? true end end end
Version data entries
150 entries across 150 versions & 3 rubygems