edr icon indicating copy to clipboard operation
edr copied to clipboard

Results 2 edr issues
Sort by recently updated
recently updated
newest added

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 ```

You don't want to define registries in a test context, if the registry isn't there, it complains about a class variable not being there. Workaround is `Edr::Registry.define {}` in the...