test: route: add admin tests defined at r8162
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8401 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
984c7da785
commit
d9425b8229
|
@ -19,9 +19,29 @@ require File.expand_path('../../../test_helper', __FILE__)
|
||||||
|
|
||||||
class RoutingAdminTest < ActionController::IntegrationTest
|
class RoutingAdminTest < ActionController::IntegrationTest
|
||||||
def test_administration_panel
|
def test_administration_panel
|
||||||
|
assert_routing(
|
||||||
|
{ :method => 'get', :path => "/admin" },
|
||||||
|
{ :controller => 'admin', :action => 'index' }
|
||||||
|
)
|
||||||
assert_routing(
|
assert_routing(
|
||||||
{ :method => 'get', :path => "/admin/projects" },
|
{ :method => 'get', :path => "/admin/projects" },
|
||||||
{ :controller => 'admin', :action => 'projects' }
|
{ :controller => 'admin', :action => 'projects' }
|
||||||
)
|
)
|
||||||
|
assert_routing(
|
||||||
|
{ :method => 'get', :path => "/admin/plugins" },
|
||||||
|
{ :controller => 'admin', :action => 'plugins' }
|
||||||
|
)
|
||||||
|
assert_routing(
|
||||||
|
{ :method => 'get', :path => "/admin/info" },
|
||||||
|
{ :controller => 'admin', :action => 'info' }
|
||||||
|
)
|
||||||
|
assert_routing(
|
||||||
|
{ :method => 'get', :path => "/admin/test_email" },
|
||||||
|
{ :controller => 'admin', :action => 'test_email' }
|
||||||
|
)
|
||||||
|
assert_routing(
|
||||||
|
{ :method => 'post', :path => "/admin/default_configuration" },
|
||||||
|
{ :controller => 'admin', :action => 'default_configuration' }
|
||||||
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue