rails/actionpack/test/controller/fake_models.rb
2008-04-01 00:50:09 +00:00

12 lines
146 B
Ruby

class Customer < Struct.new(:name, :id)
def to_param
id.to_s
end
end
class BadCustomer < Customer
end
class GoodCustomer < Customer
end