class Pact::JsonDiffer

Public Class Methods

call(expected, actual, options = {}) click to toggle source

Delegates to github.com/pact-foundation/pact-support/blob/master/lib/pact/matchers/matchers.rb#L25

# File lib/pact/shared/json_differ.rb, line 5
def self.call expected, actual, options = {}
  require 'pact/matchers' # avoid recursive loop between this file and pact/matchers
  ::Pact::Matchers.diff expected, actual, options
end