tracks/vendor/rails/actionpack/test/controller/fake_models.rb
2008-05-20 21:28:26 +01:00

5 lines
77 B
Ruby

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