Conditions | 2 |
Total Lines | 4 |
Lines | 4 |
Ratio | 100 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | # frozen_string_literal: true |
||
41 | View Code Duplication | def eql?(other) |
|
|
|||
42 | return false unless other.is_a?(self.class) |
||
43 | id == other.id && owner == other.owner |
||
44 | end |
||
45 | end |
||
50 |