aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2004-12-09 12:50:18 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2004-12-09 12:50:18 +0000
commitfc817eff447a268ce245a48369e7bd90d8f7f31f (patch)
treef0989d8b3858eb8b21da83b2eff8277c9dc3fdd1 /activerecord/test
parent586aa2f2b7b7bfe1476fd9093c9a283a6e693db1 (diff)
downloadrails-fc817eff447a268ce245a48369e7bd90d8f7f31f.tar.gz
rails-fc817eff447a268ce245a48369e7bd90d8f7f31f.tar.bz2
rails-fc817eff447a268ce245a48369e7bd90d8f7f31f.zip
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
Diffstat (limited to 'activerecord/test')
-rwxr-xr-xactiverecord/test/fixtures/reply.rb11
1 files changed, 10 insertions, 1 deletions
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