Method: Transpec::Record#==

Defined in:
lib/transpec/record.rb

#==(other) ⇒ Object Also known as: eql?



45
46
47
48
49
# File 'lib/transpec/record.rb', line 45

def ==(other)
  self.class == other.class &&
    old_syntax_type == other.old_syntax_type &&
    new_syntax_type == other.new_syntax_type
end