tracks/vendor/rails/actionpack/test/controller/fake_models.rb

20 lines
250 B
Ruby
Raw Normal View History

2011-02-04 17:11:33 +01:00
class Customer < Struct.new(:name, :id)
def to_param
id.to_s
end
end
class BadCustomer < Customer
end
class GoodCustomer < Customer
end
module Quiz
class Question < Struct.new(:name, :id)
def to_param
id.to_s
end
end
end