diff options
author | Ronan Limon Duparcmeur <ronan@2-45.pm> | 2018-11-09 16:45:18 +0100 |
---|---|---|
committer | Ronan Limon Duparcmeur <ronan@2-45.pm> | 2018-11-13 09:00:20 +0100 |
commit | 13b77fa1cb49495f1da79fec6f06475d5dd29af7 (patch) | |
tree | 04712f1c5486e7bf2574f27b36e0e06e01028553 /activemodel/test/cases | |
parent | e899e228e4fb86ed2a63d19c9137059952e954f0 (diff) | |
download | rails-13b77fa1cb49495f1da79fec6f06475d5dd29af7.tar.gz rails-13b77fa1cb49495f1da79fec6f06475d5dd29af7.tar.bz2 rails-13b77fa1cb49495f1da79fec6f06475d5dd29af7.zip |
Fix ignored options in the `#added?` method
Fixes #34416
Diffstat (limited to 'activemodel/test/cases')
-rw-r--r-- | activemodel/test/cases/errors_test.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/activemodel/test/cases/errors_test.rb b/activemodel/test/cases/errors_test.rb index 41ff6443fe..185b5a24ae 100644 --- a/activemodel/test/cases/errors_test.rb +++ b/activemodel/test/cases/errors_test.rb @@ -228,6 +228,16 @@ class ErrorsTest < ActiveModel::TestCase assert_not person.errors.added?(:name) end + test "added? returns false when checking for an error with an incorrect or missing option" do + person = Person.new + person.errors.add :name, :too_long, count: 25 + + assert person.errors.added? :name, :too_long, count: 25 + assert_not person.errors.added? :name, :too_long, count: 24 + assert_not person.errors.added? :name, :too_long + assert_not person.errors.added? :name, "is too long" + end + test "added? returns false when checking for an error by symbol and a different error with same message is present" do I18n.backend.store_translations("en", errors: { attributes: { name: { wrong: "is wrong", used: "is wrong" } } }) person = Person.new |