aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/models/topic.rb
diff options
context:
space:
mode:
authorNeeraj Singh <neerajdotname@gmail.com>2010-08-20 10:17:29 -0400
committerJosé Valim <jose.valim@gmail.com>2010-08-20 11:24:43 -0300
commit2ffa50f5a9fac08e08869687006031b70322497a (patch)
treefd79f4abae332bb2abab2ebba82fc653deaaaec6 /activemodel/test/models/topic.rb
parent0d0fbf1e648606c9499e332bad412da005a4e37f (diff)
downloadrails-2ffa50f5a9fac08e08869687006031b70322497a.tar.gz
rails-2ffa50f5a9fac08e08869687006031b70322497a.tar.bz2
rails-2ffa50f5a9fac08e08869687006031b70322497a.zip
after_validation should be called irrespective of the result of validation.
I confirmed that this is the behavior on 2.3.x . [5419 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'activemodel/test/models/topic.rb')
-rw-r--r--activemodel/test/models/topic.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/activemodel/test/models/topic.rb b/activemodel/test/models/topic.rb
index f25b774cd7..ff34565bdb 100644
--- a/activemodel/test/models/topic.rb
+++ b/activemodel/test/models/topic.rb
@@ -1,7 +1,11 @@
class Topic
include ActiveModel::Validations
+ include ActiveModel::Validations::Callbacks
attr_accessor :title, :author_name, :content, :approved
+ attr_accessor :after_validation_performed
+
+ after_validation :perform_after_validation
def initialize(attributes = {})
attributes.each do |key, value|
@@ -16,4 +20,9 @@ class Topic
def condition_is_true_but_its_not
false
end
+
+ def perform_after_validation
+ self.after_validation_performed = true
+ end
+
end