From 44ceb513ed1707eef2d3f66d4639207df5585e1f Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Fri, 11 Jan 2013 17:42:31 +0000 Subject: Plugins cannot route wiki page sub-path (#12749). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11166 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/integration/routing/wiki_test.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test') diff --git a/test/integration/routing/wiki_test.rb b/test/integration/routing/wiki_test.rb index 5deeb7ee1..b153b095b 100644 --- a/test/integration/routing/wiki_test.rb +++ b/test/integration/routing/wiki_test.rb @@ -53,6 +53,10 @@ class RoutingWikiTest < ActionController::IntegrationTest { :controller => 'wiki', :action => 'annotate', :project_id => '1', :id => 'CookBook_documentation', :version => '2' } ) + # Make sure we don't route wiki page sub-uris to let plugins handle them + assert_raise(ActionController::RoutingError) do + assert_recognizes({}, {:method => 'get', :path => "/projects/1/wiki/CookBook_documentation/whatever"}) + end end def test_wiki_misc -- cgit v1.2.3