heartcombo--simple_form/test/support/models.rb

70 lines
1.6 KiB
Ruby
Raw Normal View History

2009-12-08 13:48:31 +00:00
require 'ostruct'
2009-12-11 02:18:14 +00:00
Column = Struct.new(:name, :type, :limit)
Association = Struct.new(:klass, :name, :options)
2009-12-11 02:18:14 +00:00
class Company < Struct.new(:id, :name)
def self.all(options={})
all = (1..3).map{|i| Company.new(i, "Company #{i}")}
return [all.first] if options[:conditions]
return [all.last] if options[:order]
all
end
end
2009-12-08 13:48:31 +00:00
class User < OpenStruct
2009-12-10 02:22:53 +00:00
attr_reader :id
2009-12-08 13:48:31 +00:00
2009-12-10 02:22:53 +00:00
def initialize(attributes={})
@id = attributes.delete(:id)
super
2009-12-08 13:48:31 +00:00
end
2009-12-10 20:03:27 +00:00
def new_record!
@new_record = true
end
2009-12-08 13:48:31 +00:00
def new_record?
2009-12-10 20:03:27 +00:00
@new_record || false
2009-12-08 13:48:31 +00:00
end
def column_for_attribute(attribute)
column_type, limit = case attribute.to_sym
when :name, :status, :password then [:string, 100]
2009-12-08 13:48:31 +00:00
when :description then :text
when :age then :integer
when :credit_limit then [:decimal, 15]
2009-12-08 13:48:31 +00:00
when :active then :boolean
when :born_at then :date
when :delivery_time then :time
when :created_at then :datetime
when :updated_at then :timestamp
end
2009-12-11 02:18:14 +00:00
Column.new(attribute, column_type, limit)
2009-12-08 13:48:31 +00:00
end
2009-12-10 20:03:27 +00:00
def self.human_attribute_name(attribute)
2009-12-08 13:48:31 +00:00
case attribute
when 'name' then 'Super User Name!'
when 'description' then 'User Description!'
2009-12-10 22:11:15 +00:00
else attribute.humanize
2009-12-08 13:48:31 +00:00
end
end
2009-12-08 18:38:03 +00:00
2009-12-10 20:03:27 +00:00
def self.human_name
"User"
end
2009-12-11 02:18:14 +00:00
def self.reflect_on_association(association)
Association.new(Company, association, {}) if association == :company
2009-12-11 02:18:14 +00:00
end
2009-12-08 18:38:03 +00:00
def errors
@errors ||= {
:name => "can't be blank",
:description => "must be longer than 15 characters",
:age => ["is not a number", "must be greater than 18"],
}
end
2009-12-08 13:48:31 +00:00
end