aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-05-03 06:44:01 -0700
committerJosé Valim <jose.valim@gmail.com>2011-05-03 06:44:01 -0700
commit7ae3b82ceb83827a6f1c22ee6a6dbcfa0c44d13b (patch)
treeb26a52e2e31bab2314a42b6f03ea53d98d71e780 /actionpack/test
parent1ca81238b5abcbdad667d45a588fdb1f68a0516e (diff)
parent49b825e502d57f10aa2cee10c1d631a95f3cef64 (diff)
downloadrails-7ae3b82ceb83827a6f1c22ee6a6dbcfa0c44d13b.tar.gz
rails-7ae3b82ceb83827a6f1c22ee6a6dbcfa0c44d13b.tar.bz2
rails-7ae3b82ceb83827a6f1c22ee6a6dbcfa0c44d13b.zip
Merge pull request #375 from k33l0r/master.
Google Chrome sometimes incorrectly identifies the rescues template charset
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/dispatch/show_exceptions_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/test/dispatch/show_exceptions_test.rb b/actionpack/test/dispatch/show_exceptions_test.rb
index e453dd11ce..cc57a6cba0 100644
--- a/actionpack/test/dispatch/show_exceptions_test.rb
+++ b/actionpack/test/dispatch/show_exceptions_test.rb
@@ -137,4 +137,11 @@ class ShowExceptionsTest < ActionDispatch::IntegrationTest
assert_response 500
assert_match(/RuntimeError\n in FeaturedTilesController/, body)
end
+
+ test "sets the HTTP charset parameter" do
+ @app = DevelopmentApp
+
+ get "/", {}, {'action_dispatch.show_exceptions' => true}
+ assert_equal "text/html; charset=utf-8", response.headers["Content-Type"]
+ end
end