aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/models/topic.rb
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2011-02-05 16:00:57 -0800
committerCarl Lerche <me@carllerche.com>2011-02-05 16:00:57 -0800
commited7614aa7de2eaeba16c9af11cf09b4fd7ed6819 (patch)
treea3556b1e7add54b9463edfaa40037a8385308063 /activemodel/test/models/topic.rb
parent7176ade35b4d6b167873991e0851f3fb9d46ae3b (diff)
downloadrails-ed7614aa7de2eaeba16c9af11cf09b4fd7ed6819.tar.gz
rails-ed7614aa7de2eaeba16c9af11cf09b4fd7ed6819.tar.bz2
rails-ed7614aa7de2eaeba16c9af11cf09b4fd7ed6819.zip
Provide a way to specify alternate option keys for validates
Diffstat (limited to 'activemodel/test/models/topic.rb')
-rw-r--r--activemodel/test/models/topic.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/activemodel/test/models/topic.rb b/activemodel/test/models/topic.rb
index ff34565bdb..2f0bb95071 100644
--- a/activemodel/test/models/topic.rb
+++ b/activemodel/test/models/topic.rb
@@ -2,6 +2,10 @@ class Topic
include ActiveModel::Validations
include ActiveModel::Validations::Callbacks
+ def self._validates_default_keys
+ super | [ :message ]
+ end
+
attr_accessor :title, :author_name, :content, :approved
attr_accessor :after_validation_performed