class Pact::DifferenceIndicator

Public Instance Methods

==(other) click to toggle source
# File lib/pact/matchers/difference_indicator.rb, line 8
def == other
  other.class == self.class
end
as_json(options = {}) click to toggle source
# File lib/pact/matchers/difference_indicator.rb, line 20
def as_json options = {}
  to_s
end
eql?(other) click to toggle source
# File lib/pact/matchers/difference_indicator.rb, line 12
def eql? other
  self == other
end
to_json(options = {}) click to toggle source
# File lib/pact/matchers/difference_indicator.rb, line 16
def to_json options = {}
  remove_unicode as_json.to_json(options)
end