diff options
author | Edward Anderson <nilbus@nilbus.com> | 2013-01-12 10:33:01 -0500 |
---|---|---|
committer | Edward Anderson <nilbus@nilbus.com> | 2013-01-15 19:16:08 -0500 |
commit | 7925884b5e03127b40f4fd8987b8be115a406c4a (patch) | |
tree | 923562fb1525b21383000d7700eced6cd832e0a8 /actionpack/test | |
parent | 8492396e9c1fe21036783d9785ed42c27dee9201 (diff) | |
download | rails-7925884b5e03127b40f4fd8987b8be115a406c4a.tar.gz rails-7925884b5e03127b40f4fd8987b8be115a406c4a.tar.bz2 rails-7925884b5e03127b40f4fd8987b8be115a406c4a.zip |
Remove header bloat introduced by BestStandardsSupport middleware
The same headers were being duplicated on every request.
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/dispatch/best_standards_support_test.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/best_standards_support_test.rb b/actionpack/test/dispatch/best_standards_support_test.rb index 0737c40a39..551bb9621a 100644 --- a/actionpack/test/dispatch/best_standards_support_test.rb +++ b/actionpack/test/dispatch/best_standards_support_test.rb @@ -16,9 +16,10 @@ class BestStandardsSupportTest < ActiveSupport::TestCase assert_equal nil, headers["X-UA-Compatible"] end - def test_appends_to_app_headers + def test_appends_to_app_headers_without_duplication_after_multiple_requests app_headers = { "X-UA-Compatible" => "requiresActiveX=true" } _, headers, _ = app(true, app_headers).call({}) + _, headers, _ = app(true, app_headers).call({}) expects = "requiresActiveX=true,IE=Edge,chrome=1" assert_equal expects, headers["X-UA-Compatible"] |