Issue subject is not updated when you select another issue on time entry form (#24041).

git-svn-id: http://svn.redmine.org/redmine/trunk@15951 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2016-11-18 08:11:11 +00:00
parent 2b70d97705
commit 2544fe6e15
6 changed files with 23 additions and 16 deletions

View File

@@ -27,7 +27,8 @@ class RoutingTimelogsTest < Redmine::RoutingTest
should_route 'POST /time_entries' => 'timelog#create'
should_route 'GET /time_entries/22/edit' => 'timelog#edit', :id => '22'
should_route 'PUT /time_entries/22' => 'timelog#update', :id => '22'
should_route 'PATCH /time_entries/22/edit' => 'timelog#edit', :id => '22'
should_route 'PATCH /time_entries/22' => 'timelog#update', :id => '22'
should_route 'DELETE /time_entries/22' => 'timelog#destroy', :id => '22'
end