Sha256: 1e2bc16a072d86ce4426b12c1af818e49e1da8f30ca44bd0a13044598ed635cf

Contents?: true

Size: 1009 Bytes

Versions: 2

Compression:

Stored size: 1009 Bytes

Contents

require 'models/topic'

class Reply < Topic
  validate :errors_on_empty_content
  validate :title_is_wrong_create, :on => :create

  validate :check_empty_title
  validate :check_content_mismatch, :on => :create
  validate :check_wrong_update, :on => :update

  attr_accessible :title, :author_name, :author_email_address, :written_on, :content, :last_read

  def check_empty_title
    errors[:title] << "Empty" unless attribute_present?("title")
  end

  def errors_on_empty_content
    errors[:content] << "Empty" unless attribute_present?("content")
  end

  def check_content_mismatch
    if attribute_present?("title") && attribute_present?("content") && content == "Mismatch"
      errors[:title] << "is Content Mismatch"
    end
  end

  def title_is_wrong_create
    errors[:title] << "is Wrong Create" if attribute_present?("title") && title == "Wrong Create"
  end

  def check_wrong_update
    errors[:title] << "is Wrong Update" if attribute_present?("title") && title == "Wrong Update"
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
cassandra_object-0.6.0.pre vendor/activemodel/test/models/reply.rb
recliner-0.0.1 vendor/activemodel/test/models/reply.rb