From 3a48b83e5eec62a5d2bfab1a118c24b45345388c Mon Sep 17 00:00:00 2001 From: Andrew White Date: Sun, 5 Jan 2014 19:58:04 +0000 Subject: Allow an absolute controller path inside a module scope Fixes #12777 --- actionpack/test/dispatch/routing_test.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'actionpack/test') diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb index 840c157642..5a532dc38f 100644 --- a/actionpack/test/dispatch/routing_test.rb +++ b/actionpack/test/dispatch/routing_test.rb @@ -2882,6 +2882,18 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest assert_equal '/downloads/1/1.tar', download_path('1', '1') end + def test_absolute_controller_namespace + draw do + namespace :foo do + get '/', to: '/bar#index', as: 'root' + end + end + + get '/foo' + assert_equal 'bar#index', @response.body + assert_equal '/foo', foo_root_path + end + private def draw(&block) -- cgit v1.2.3