rails/actionpack/test/controller/fake_models.rb
2007-07-17 09:44:03 +00:00

6 lines
77 B
Ruby

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