aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2016-04-05 04:32:14 -0300
committerRafael França <rafaelmfranca@gmail.com>2016-04-05 04:32:14 -0300
commit58bdf2790b6c61066a580d140117a105854d6051 (patch)
tree7fd6f10a30d2fd7ea8bd9320a5fee15eefac0cfd /activemodel/test
parent817d109c0ab6a7ab0061300b8be21ad823cb30fc (diff)
parent7bdb4b5598ec9bd7473f52e59ee58682c4d23801 (diff)
downloadrails-58bdf2790b6c61066a580d140117a105854d6051.tar.gz
rails-58bdf2790b6c61066a580d140117a105854d6051.tar.bz2
rails-58bdf2790b6c61066a580d140117a105854d6051.zip
Merge pull request #24119 from prathamesh-sonpatki/proc-messages
Allow passing record being validated to error message generator
Diffstat (limited to 'activemodel/test')
-rw-r--r--activemodel/test/cases/validations_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/activemodel/test/cases/validations_test.rb b/activemodel/test/cases/validations_test.rb
index f0317ad219..18b8d9e4af 100644
--- a/activemodel/test/cases/validations_test.rb
+++ b/activemodel/test/cases/validations_test.rb
@@ -444,4 +444,12 @@ class ValidationsTest < ActiveModel::TestCase
assert topic.invalid?
assert duped.valid?
end
+
+ def test_validation_with_message_as_proc_that_takes_a_record_as_a_parameter
+ Topic.validates_presence_of(:title, message: proc { |record| "You have failed me for the last time, #{record.author_name}." })
+
+ t = Topic.new(author_name: 'Admiral')
+ assert t.invalid?
+ assert_equal ["You have failed me for the last time, Admiral."], t.errors[:title]
+ end
end