aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/test/lib/controller/fake_models.rb
blob: 5e63204bad35422d60a01875b37df9163b131de0 (plain) (tree)
1
2
3
4
5
6
7
                                       

                            



              





                             


                                         

                              




                
class Customer < Struct.new(:name, :id)
  extend ActiveModel::Naming

  def to_param
    id.to_s
  end
end

class BadCustomer < Customer
end

class GoodCustomer < Customer
end

module Quiz
  class Question < Struct.new(:name, :id)
    extend ActiveModel::Naming

    def to_param
      id.to_s
    end
  end
end