Removed IssuesController#update_form action, use #new and #edit instead.

git-svn-id: http://svn.redmine.org/redmine/trunk@13997 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2015-02-13 20:00:22 +00:00
parent 37aa016740
commit a328224771
10 changed files with 57 additions and 53 deletions

View File

@@ -50,7 +50,7 @@ class RoutingIssuesTest < Redmine::RoutingTest
end
def test_issues_form_update
should_route 'POST /projects/23/issues/update_form' => 'issues#update_form', :project_id => '23'
should_route 'PUT /projects/23/issues/update_form' => 'issues#update_form', :project_id => '23'
should_route 'POST /projects/23/issues/new' => 'issues#new', :project_id => '23'
should_route 'PATCH /issues/23/edit' => 'issues#edit', :id => '23'
end
end