Comparing two Edr::Models fails even though they may have the same id. Consider adding the following method to Edr::Model: ``` ruby def ==(other) other.instance_of?(self.class) && other.id == self.id end ```