aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/reply.rb
blob: 51dfe21d2daa06bfe94172bb5f2cc599aa49701f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class Reply < Topic
  belongs_to :topic, :foreign_key => "parent_id", :counter_cache => true
  
  attr_accessible :title, :author_name, :author_email_address, :written_on, :content, :last_read

  def validate
    errors.add("title", "Empty")   unless attribute_present? "title"
    errors.add("content", "Empty") unless attribute_present? "content"
  end
  
  def validate_on_create
    errors.add("title", "is Wrong Create") if attribute_present?("title") && title == "Wrong Create"
    if attribute_present?("title") && attribute_present?("content") && content == "Mismatch"
      errors.add("title", "is Content Mismatch") 
    end
  end

  def validate_on_update
    errors.add("title", "is Wrong Update") if attribute_present?("title") && title == "Wrong Update"
  end
end