From a9b666b51d28b2e74da630c31327dee7cbe96d37 Mon Sep 17 00:00:00 2001 From: Krekoten' Marjan Date: Tue, 30 Nov 2010 22:48:19 +0800 Subject: Fix generation of wrong json string when field has multiple errors --- activemodel/test/cases/errors_test.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'activemodel/test/cases/errors_test.rb') diff --git a/activemodel/test/cases/errors_test.rb b/activemodel/test/cases/errors_test.rb index 79b45bb298..1958ed112c 100644 --- a/activemodel/test/cases/errors_test.rb +++ b/activemodel/test/cases/errors_test.rb @@ -61,5 +61,15 @@ class ErrorsTest < ActiveModel::TestCase assert_equal ["name can not be blank", "name can not be nil"], person.errors.to_a end + + test 'to_json should return valid json string' do + person = Person.new + person.errors.add(:name, "can not be blank") + person.errors.add(:name, "can not be nil") + + hash = ActiveSupport::OrderedHash[:name, ["can not be blank", "can not be nil"]] + + assert_equal person.errors.to_json, hash.to_json + end end -- cgit v1.2.3