diff options
Diffstat (limited to 'activejob/test/models')
-rw-r--r-- | activejob/test/models/person.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/activejob/test/models/person.rb b/activejob/test/models/person.rb new file mode 100644 index 0000000000..a5bdbc462b --- /dev/null +++ b/activejob/test/models/person.rb @@ -0,0 +1,19 @@ +require 'active_model/global_identification' + +class Person + include ActiveModel::GlobalIdentification + + attr_reader :id + + def self.find(id) + new(id) + end + + def initialize(id) + @id = id + end + + def ==(other_person) + other_person.is_a?(Person) && id.to_s == other_person.id.to_s + end +end |