aboutsummaryrefslogblamecommitdiffstats
path: root/test/models/person.rb
blob: 6e91e8b9a2a7bb8e5b7faa7f001bc2ba34bfa98d (plain) (tree)


















                                                      
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 = other_person.id
  end
end