|
|
|
@ -173,7 +173,7 @@ class RoutingTest < ActionController::IntegrationTest |
|
|
|
|
should_route :get, "/projects/4223/settings/members", :controller => 'projects', :action => 'settings', :id => '4223', :tab => 'members' |
|
|
|
|
should_route :get, "/projects/567/destroy", :controller => 'projects', :action => 'destroy', :id => '567' |
|
|
|
|
should_route :get, "/projects/33/files", :controller => 'files', :action => 'index', :id => '33' |
|
|
|
|
should_route :get, "/projects/33/files/new", :controller => 'projects', :action => 'add_file', :id => '33' |
|
|
|
|
should_route :get, "/projects/33/files/new", :controller => 'files', :action => 'new', :id => '33' |
|
|
|
|
should_route :get, "/projects/33/roadmap", :controller => 'versions', :action => 'index', :project_id => '33' |
|
|
|
|
should_route :get, "/projects/33/activity", :controller => 'activities', :action => 'index', :id => '33' |
|
|
|
|
should_route :get, "/projects/33/activity.atom", :controller => 'activities', :action => 'index', :id => '33', :format => 'atom' |
|
|
|
@ -182,7 +182,7 @@ class RoutingTest < ActionController::IntegrationTest |
|
|
|
|
should_route :post, "/projects.xml", :controller => 'projects', :action => 'add', :format => 'xml' |
|
|
|
|
should_route :post, "/projects/4223/edit", :controller => 'projects', :action => 'edit', :id => '4223' |
|
|
|
|
should_route :post, "/projects/64/destroy", :controller => 'projects', :action => 'destroy', :id => '64' |
|
|
|
|
should_route :post, "/projects/33/files/new", :controller => 'projects', :action => 'add_file', :id => '33' |
|
|
|
|
should_route :post, "/projects/33/files/new", :controller => 'files', :action => 'new', :id => '33' |
|
|
|
|
should_route :post, "/projects/64/archive", :controller => 'projects', :action => 'archive', :id => '64' |
|
|
|
|
should_route :post, "/projects/64/unarchive", :controller => 'projects', :action => 'unarchive', :id => '64' |
|
|
|
|
should_route :post, "/projects/64/activities/save", :controller => 'projects', :action => 'save_activities', :id => '64' |
|
|
|
|