summaryrefslogtreecommitdiffstats
path: root/test/integration
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2015-05-30 08:38:35 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2015-05-30 08:38:35 +0000
commit216a153421b05bce4d4e64b590889b740367b92e (patch)
treea01c6009db7d9aefc80ea09b073e1ca48131ffab /test/integration
parentaffeabcc526449057b29ca636f456234a87798b6 (diff)
downloadredmine-216a153421b05bce4d4e64b590889b740367b92e.tar.gz
redmine-216a153421b05bce4d4e64b590889b740367b92e.zip
Update activities list when changing project/issue id on the time entry form (#19656).
git-svn-id: http://svn.redmine.org/redmine/trunk@14287 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration')
-rw-r--r--test/integration/routing/timelog_test.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/integration/routing/timelog_test.rb b/test/integration/routing/timelog_test.rb
index 1c7693fbc..c84f22eec 100644
--- a/test/integration/routing/timelog_test.rb
+++ b/test/integration/routing/timelog_test.rb
@@ -23,6 +23,7 @@ class RoutingTimelogsTest < Redmine::RoutingTest
should_route 'GET /time_entries.csv' => 'timelog#index', :format => 'csv'
should_route 'GET /time_entries.atom' => 'timelog#index', :format => 'atom'
should_route 'GET /time_entries/new' => 'timelog#new'
+ should_route 'POST /time_entries/new' => 'timelog#new'
should_route 'POST /time_entries' => 'timelog#create'
should_route 'GET /time_entries/22/edit' => 'timelog#edit', :id => '22'