module Pact class UnexpectedKey def == other other.is_a? UnexpectedKey end def to_s '' end def as_json options = {} to_s end def to_json opts = {} as_json.to_json options end end end