From 6f418a09d82351ae74409379f80012f717aa9cb0 Mon Sep 17 00:00:00 2001 From: Zamith Date: Mon, 4 May 2015 13:36:26 +0100 Subject: Adds/Corrects use case for adding an error message I believe this is a use case that was supposed to be supported, and it's a small fix. --- activemodel/test/cases/errors_test.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'activemodel/test/cases') diff --git a/activemodel/test/cases/errors_test.rb b/activemodel/test/cases/errors_test.rb index f781a0017f..d10c20caad 100644 --- a/activemodel/test/cases/errors_test.rb +++ b/activemodel/test/cases/errors_test.rb @@ -149,6 +149,12 @@ class ErrorsTest < ActiveModel::TestCase assert_equal ["cannot be blank"], person.errors[:name] end + test "add an error message on a specific attribute with a defined type" do + person = Person.new + person.errors.add(:name, :blank, message: "cannot be blank") + assert_equal ["cannot be blank"], person.errors[:name] + end + test "add an error with a symbol" do person = Person.new person.errors.add(:name, :blank) -- cgit v1.2.3