提交 e28ad77b 编写于 作者: T Tom Stuart 提交者: Pratik Naik

Allow use of :path_prefix and :name_prefix outside of namespaced routes. [#1188 state:resolved]

Signed-off-by: NPratik Naik <pratiknaik@gmail.com>
上级 aec39162
......@@ -60,12 +60,10 @@ def segment_for(string)
# segments are passed alongside in order to distinguish between default values
# and requirements.
def divide_route_options(segments, options)
options = options.dup
options = options.except(:path_prefix, :name_prefix)
if options[:namespace]
options[:controller] = "#{options.delete(:namespace).sub(/\/$/, '')}/#{options[:controller]}"
options.delete(:path_prefix)
options.delete(:name_prefix)
end
requirements = (options.delete(:requirements) || {}).dup
......
......@@ -924,6 +924,20 @@ def test_named_route_with_default
end
def test_named_route_with_name_prefix
rs.add_named_route :page, 'page', :controller => 'content', :action => 'show_page', :name_prefix => 'my_'
x = setup_for_named_route
assert_equal("http://named.route.test/page",
x.send(:my_page_url))
end
def test_named_route_with_path_prefix
rs.add_named_route :page, 'page', :controller => 'content', :action => 'show_page', :path_prefix => 'my'
x = setup_for_named_route
assert_equal("http://named.route.test/my/page",
x.send(:page_url))
end
def test_named_route_with_nested_controller
rs.add_named_route :users, 'admin/user', :controller => 'admin/user', :action => 'index'
x = setup_for_named_route
......@@ -2147,6 +2161,13 @@ def test_generate
assert_equal [:x], set.extra_keys(args)
end
def test_generate_with_path_prefix
set.draw { |map| map.connect ':controller/:action/:id', :path_prefix => 'my' }
args = { :controller => "foo", :action => "bar", :id => "7", :x => "y" }
assert_equal "/my/foo/bar/7?x=y", set.generate(args)
end
def test_named_routes_are_never_relative_to_modules
set.draw do |map|
map.connect "/connection/manage/:action", :controller => 'connection/manage'
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册