Sha256: b22195e5381fce0fcea1520eb5bd8c5309692cf5f0d19921a550bc4efa186ccc

Contents?: true

Size: 777 Bytes

Versions: 2

Compression:

Stored size: 777 Bytes

Contents

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
activerecord-1.0.0 test/fixtures/reply.rb
activerecord-1.1.0 test/fixtures/reply.rb