From f4b57b904dd4b6f6b4db6ff397cab23463890cc0 Mon Sep 17 00:00:00 2001 From: Jon Moss Date: Sun, 30 Apr 2017 11:05:20 -0400 Subject: Default content type for `head` is `text/html` Otherwise Mime::NullType will be returned as the `Content-Type` header. --- actionpack/test/controller/render_test.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'actionpack/test/controller') diff --git a/actionpack/test/controller/render_test.rb b/actionpack/test/controller/render_test.rb index 3a0a0a8bde..313368eec4 100644 --- a/actionpack/test/controller/render_test.rb +++ b/actionpack/test/controller/render_test.rb @@ -227,6 +227,15 @@ class TestController < ActionController::Base head 204 end + def head_default_content_type + # simulating path like "/1.foobar" + request.formats = [] + + respond_to do |format| + format.any { head 200 } + end + end + private def set_variable_for_layout @@ -759,6 +768,11 @@ class HeadRenderTest < ActionController::TestCase get :head_and_return end end + + def test_head_default_content_type + post :head_default_content_type + assert_equal "text/html", @response.header["Content-Type"] + end end class HttpCacheForeverTest < ActionController::TestCase -- cgit v1.2.3