Method: Pact::CSV::Differ#initialize

Defined in:
lib/pact/csv/differ.rb

#initialize(expected, actual, options = {}) ⇒ Differ

Returns a new instance of Differ.



9
10
11
12
13
14
# File 'lib/pact/csv/differ.rb', line 9

def initialize expected, actual, options = {}
  @expected = expected
  @actual = actual
  @options = options
  puts caller.join("\n")
end