aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch/header_test.rb
diff options
context:
space:
mode:
authoreileencodes <eileencodes@gmail.com>2016-08-26 13:12:33 -0400
committereileencodes <eileencodes@gmail.com>2016-08-26 13:12:33 -0400
commit1ec85cf9d8a6ad36c3c40cc08a0c7d8407e4b080 (patch)
tree79d66d86e8b4b9270a52a742845b0b23ae830f16 /actionpack/test/dispatch/header_test.rb
parentf394f3ba763adbd073685a4a3f53b2a3ad71381a (diff)
downloadrails-1ec85cf9d8a6ad36c3c40cc08a0c7d8407e4b080.tar.gz
rails-1ec85cf9d8a6ad36c3c40cc08a0c7d8407e4b080.tar.bz2
rails-1ec85cf9d8a6ad36c3c40cc08a0c7d8407e4b080.zip
Missing key should throw KeyError
It should not throw a NameError, but should throw a KeyError. Fixes #26278
Diffstat (limited to 'actionpack/test/dispatch/header_test.rb')
-rw-r--r--actionpack/test/dispatch/header_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/test/dispatch/header_test.rb b/actionpack/test/dispatch/header_test.rb
index 7a155d70cb..374e618b42 100644
--- a/actionpack/test/dispatch/header_test.rb
+++ b/actionpack/test/dispatch/header_test.rb
@@ -158,4 +158,10 @@ class HeaderTest < ActiveSupport::TestCase
assert_equal({ "HTTP_REFERER"=>"http://example.com/",
"CONTENT_TYPE"=>"text/plain" }, env)
end
+
+ test "fetch exception" do
+ assert_raises KeyError do
+ @headers.fetch(:some_key_that_doesnt_exist)
+ end
+ end
end