edr
edr copied to clipboard
Edr::Model should support entity equality
Comparing two Edr::Models fails even though they may have the same id.
Consider adding the following method to Edr::Model:
def ==(other)
other.instance_of?(self.class) && other.id == self.id
end
:+1: