aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/new_base/bare_metal_test.rb
diff options
context:
space:
mode:
authortwinturbo <me@broadcastingadam.com>2012-05-03 17:24:05 -0700
committertwinturbo <me@broadcastingadam.com>2012-05-03 17:24:05 -0700
commit8edd21c66fee41f755cf962e898646005ae866c0 (patch)
treebab48d7471e4a380478efcc08bb71dbdccb56f3f /actionpack/test/controller/new_base/bare_metal_test.rb
parent8eedd1a4a7bed400d0daed1fecafc4f84c5561f2 (diff)
downloadrails-8edd21c66fee41f755cf962e898646005ae866c0.tar.gz
rails-8edd21c66fee41f755cf962e898646005ae866c0.tar.bz2
rails-8edd21c66fee41f755cf962e898646005ae866c0.zip
Remove content-length as well
Diffstat (limited to 'actionpack/test/controller/new_base/bare_metal_test.rb')
-rw-r--r--actionpack/test/controller/new_base/bare_metal_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/test/controller/new_base/bare_metal_test.rb b/actionpack/test/controller/new_base/bare_metal_test.rb
index df457f8a3c..5bcd79ebec 100644
--- a/actionpack/test/controller/new_base/bare_metal_test.rb
+++ b/actionpack/test/controller/new_base/bare_metal_test.rb
@@ -78,31 +78,37 @@ module BareMetalTest
test "head :continue (100) does not return a content-type header" do
headers = HeadController.action(:continue).call(Rack::MockRequest.env_for("/")).second
assert_nil headers['Content-Type']
+ assert_nil headers['Content-Length']
end
test "head :continue (101) does not return a content-type header" do
headers = HeadController.action(:continue).call(Rack::MockRequest.env_for("/")).second
assert_nil headers['Content-Type']
+ assert_nil headers['Content-Length']
end
test "head :processing (102) does not return a content-type header" do
headers = HeadController.action(:processing).call(Rack::MockRequest.env_for("/")).second
assert_nil headers['Content-Type']
+ assert_nil headers['Content-Length']
end
test "head :no_content (204) does not return a content-type header" do
headers = HeadController.action(:no_content).call(Rack::MockRequest.env_for("/")).second
assert_nil headers['Content-Type']
+ assert_nil headers['Content-Length']
end
test "head :reset_content (205) does not return a content-type header" do
headers = HeadController.action(:reset_content).call(Rack::MockRequest.env_for("/")).second
assert_nil headers['Content-Type']
+ assert_nil headers['Content-Length']
end
test "head :not_modified (304) does not return a content-type header" do
headers = HeadController.action(:not_modified).call(Rack::MockRequest.env_for("/")).second
assert_nil headers['Content-Type']
+ assert_nil headers['Content-Length']
end
end