aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/test_case_test.rb
diff options
context:
space:
mode:
authorEileen M. Uchitelle <eileencodes@users.noreply.github.com>2018-12-17 10:24:38 -0500
committerGitHub <noreply@github.com>2018-12-17 10:24:38 -0500
commit02b931c764cca4c3f67b1decfc046bfb46dc510c (patch)
tree04b25f1e0daf1e3f4bf71705bd08fa5dfa51c870 /actionpack/test/controller/test_case_test.rb
parent07ec8062e605ba4e9bd153e1d264b02ac4ab8a0f (diff)
parent048e3172f51db1fddd03b89f676d96a443539a13 (diff)
downloadrails-02b931c764cca4c3f67b1decfc046bfb46dc510c.tar.gz
rails-02b931c764cca4c3f67b1decfc046bfb46dc510c.tar.bz2
rails-02b931c764cca4c3f67b1decfc046bfb46dc510c.zip
Merge branch 'master' into host-authorization
Diffstat (limited to 'actionpack/test/controller/test_case_test.rb')
-rw-r--r--actionpack/test/controller/test_case_test.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/actionpack/test/controller/test_case_test.rb b/actionpack/test/controller/test_case_test.rb
index 6fc70d6248..c931e2daac 100644
--- a/actionpack/test/controller/test_case_test.rb
+++ b/actionpack/test/controller/test_case_test.rb
@@ -156,6 +156,10 @@ XML
render html: '<body class="foo"></body>'.html_safe
end
+ def render_json
+ render json: request.raw_post
+ end
+
def boom
raise "boom!"
end
@@ -965,6 +969,16 @@ XML
assert_equal "q=test2", @response.body
end
+
+ def test_parsed_body_without_as_option
+ post :render_json, body: { foo: "heyo" }
+ assert_equal({ "foo" => "heyo" }, response.parsed_body)
+ end
+
+ def test_parsed_body_with_as_option
+ post :render_json, body: { foo: "heyo" }, as: :json
+ assert_equal({ "foo" => "heyo" }, response.parsed_body)
+ end
end
class ResponseDefaultHeadersTest < ActionController::TestCase