From 8817796167d6aba16e67b99ad4010500a797f2c4 Mon Sep 17 00:00:00 2001 From: Lawrence Pit Date: Fri, 9 Sep 2011 18:34:13 +1000 Subject: Added test for obj.errors.as_json --- activemodel/test/cases/errors_test.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/activemodel/test/cases/errors_test.rb b/activemodel/test/cases/errors_test.rb index 51668a0689..4c76bb43a8 100644 --- a/activemodel/test/cases/errors_test.rb +++ b/activemodel/test/cases/errors_test.rb @@ -102,4 +102,15 @@ class ErrorsTest < ActiveModel::TestCase assert_equal "name can not be blank", person.errors.full_message(:name, "can not be blank") end + test 'should return a JSON hash representation of the errors' do + person = Person.new + person.errors.add(:name, "can not be blank") + person.errors.add(:name, "can not be nil") + person.errors.add(:email, "is invalid") + hash = person.errors.as_json + assert_equal ["can not be blank", "can not be nil"], hash[:name] + assert_equal ["is invalid"], hash[:email] + end + end + -- cgit v1.2.3