diff options
author | Andrew White <pixeltrix@users.noreply.github.com> | 2015-02-08 23:50:16 +0000 |
---|---|---|
committer | Andrew White <pixeltrix@users.noreply.github.com> | 2015-02-08 23:50:16 +0000 |
commit | b6dd0c4ddebf5e7aab0a669915cb349ec65e5b88 (patch) | |
tree | b258b2d5128ff0d29a571835815dc68380286e71 /actionpack/test | |
parent | de9a3748c436f849dd1877851115cd94663c2725 (diff) | |
parent | b9c63b0aae7a7f9ddf32e155b11a51bd9c441857 (diff) | |
download | rails-b6dd0c4ddebf5e7aab0a669915cb349ec65e5b88.tar.gz rails-b6dd0c4ddebf5e7aab0a669915cb349ec65e5b88.tar.bz2 rails-b6dd0c4ddebf5e7aab0a669915cb349ec65e5b88.zip |
Merge pull request #18764 from tsun1215/master
Explicitly ignored wildcard verbs from head_routes
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/dispatch/routing_test.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb index 3a95a9025f..ca5de05814 100644 --- a/actionpack/test/dispatch/routing_test.rb +++ b/actionpack/test/dispatch/routing_test.rb @@ -3477,6 +3477,18 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest assert_equal '/post/comments/new', new_comment_path end + def test_head_fetch_with_mount_on_root + draw do + get '/home' => 'test#index' + mount lambda { |env| [404, {"Content-Type" => "text/html"}, ["testing"]] }, at: '/' + end + head '/home' + assert_response :success + + head '/' + assert_response :not_found + end + private def draw(&block) |