aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/fake_models.rb
blob: 7420579ed8fdf76662854960ee3cdefbc787a6b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class Customer < Struct.new(:name, :id)
  def to_param
    id.to_s
  end
end

class BadCustomer < Customer
end

class GoodCustomer < Customer
end