From fc817eff447a268ce245a48369e7bd90d8f7f31f Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 9 Dec 2004 12:50:18 +0000 Subject: Added validation macros to make the stackable just like the lifecycle callbacks git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@94 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/fixtures/reply.rb | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'activerecord/test/fixtures/reply.rb') diff --git a/activerecord/test/fixtures/reply.rb b/activerecord/test/fixtures/reply.rb index 51dfe21d2d..127f2052f3 100755 --- a/activerecord/test/fixtures/reply.rb +++ b/activerecord/test/fixtures/reply.rb @@ -1,20 +1,29 @@ class Reply < Topic belongs_to :topic, :foreign_key => "parent_id", :counter_cache => true + + validate :errors_on_empty_content + validate_on_create :title_is_wrong_create attr_accessible :title, :author_name, :author_email_address, :written_on, :content, :last_read def validate errors.add("title", "Empty") unless attribute_present? "title" + end + + def errors_on_empty_content 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 title_is_wrong_create + errors.add("title", "is Wrong Create") if attribute_present?("title") && title == "Wrong Create" + end + def validate_on_update errors.add("title", "is Wrong Update") if attribute_present?("title") && title == "Wrong Update" end -- cgit v1.2.3