aboutsummaryrefslogtreecommitdiffstats
path: root/activeresource/test
diff options
context:
space:
mode:
authorMatt Jones <al2o3cr@gmail.com>2012-02-04 13:41:12 -0600
committerMatt Jones <al2o3cr@gmail.com>2012-02-04 13:41:12 -0600
commit7c307c2da3e0e01131a892b30c040832edbfacb5 (patch)
tree1df04792144038729266f5ca7446babe5afcac92 /activeresource/test
parentd709b124d1815340f4a2229b05362ea37298288f (diff)
parentb09b2a8401c18d1efff21b3919ac280470a6eb8b (diff)
downloadrails-7c307c2da3e0e01131a892b30c040832edbfacb5.tar.gz
rails-7c307c2da3e0e01131a892b30c040832edbfacb5.tar.bz2
rails-7c307c2da3e0e01131a892b30c040832edbfacb5.zip
Merge remote-tracking branch 'odorcicd/fix_activeresource_json_errors' into compatible_json_errors
Diffstat (limited to 'activeresource/test')
-rw-r--r--activeresource/test/cases/base_errors_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activeresource/test/cases/base_errors_test.rb b/activeresource/test/cases/base_errors_test.rb
index aacbeeb83c..98fef5fa73 100644
--- a/activeresource/test/cases/base_errors_test.rb
+++ b/activeresource/test/cases/base_errors_test.rb
@@ -5,7 +5,7 @@ class BaseErrorsTest < ActiveSupport::TestCase
def setup
ActiveResource::HttpMock.respond_to do |mock|
mock.post "/people.xml", {}, %q(<?xml version="1.0" encoding="UTF-8"?><errors><error>Age can't be blank</error><error>Name can't be blank</error><error>Name must start with a letter</error><error>Person quota full for today.</error></errors>), 422, {'Content-Type' => 'application/xml; charset=utf-8'}
- mock.post "/people.json", {}, %q({"errors":["Age can't be blank","Name can't be blank","Name must start with a letter","Person quota full for today."]}), 422, {'Content-Type' => 'application/json; charset=utf-8'}
+ mock.post "/people.json", {}, %q({"errors":{"age":["can't be blank"],"name":["can't be blank", "must start with a letter"],"person":["quota full for today."]}}), 422, {'Content-Type' => 'application/json; charset=utf-8'}
end
end
@@ -83,7 +83,7 @@ class BaseErrorsTest < ActiveSupport::TestCase
def test_should_mark_as_invalid_when_content_type_is_unavailable_in_response_header
ActiveResource::HttpMock.respond_to do |mock|
mock.post "/people.xml", {}, %q(<?xml version="1.0" encoding="UTF-8"?><errors><error>Age can't be blank</error><error>Name can't be blank</error><error>Name must start with a letter</error><error>Person quota full for today.</error></errors>), 422, {}
- mock.post "/people.json", {}, %q({"errors":["Age can't be blank","Name can't be blank","Name must start with a letter","Person quota full for today."]}), 422, {}
+ mock.post "/people.json", {}, %q({"errors":{"age":["can't be blank"],"name":["can't be blank", "must start with a letter"],"person":["quota full for today."]}}), 422, {}
end
[ :json, :xml ].each do |format|