]> source.dussan.org Git - redmine.git/commitdiff
fix source indent of TimelogControllerTest
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 24 Oct 2020 14:39:55 +0000 (14:39 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 24 Oct 2020 14:39:55 +0000 (14:39 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20182 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/timelog_controller_test.rb

index 0f28e2a65bf4bf7f382c3357abfcee2d2d1b9fb5..e8eb86076680eed27e6f1d51b1923af14852369b 100644 (file)
@@ -233,16 +233,20 @@ class TimelogControllerTest < Redmine::ControllerTest
   def test_post_create
     @request.session[:user_id] = 3
     assert_difference 'TimeEntry.count' do
-      post :create, :params => {
-        :project_id => 1,
-        :time_entry => {:comments => 'Some work on TimelogControllerTest',
-          # Not the default activity
-          :activity_id => '11',
-          :spent_on => '2008-03-14',
-          :issue_id => '1',
-          :hours => '7.3'
+      post(
+        :create,
+        :params => {
+          :project_id => 1,
+          :time_entry => {
+            :comments => 'Some work on TimelogControllerTest',
+            # Not the default activity
+            :activity_id => '11',
+            :spent_on => '2008-03-14',
+            :issue_id => '1',
+            :hours => '7.3'
+          }
         }
-      }
+      )
       assert_redirected_to '/projects/ecookbook/time_entries'
     end
 
@@ -363,19 +367,21 @@ class TimelogControllerTest < Redmine::ControllerTest
   def test_create_for_other_user
     Role.find_by_name('Manager').add_permission! :log_time_for_other_users
     @request.session[:user_id] = 2
-
-    post :create, :params => {
-      :project_id => 1,
-      :time_entry => {:comments => 'Some work on TimelogControllerTest',
-        # Not the default activity
-        :activity_id => '11',
-        :spent_on => '2008-03-14',
-        :issue_id => '1',
-        :hours => '7.3',
-        :user_id => '3'
+    post(
+      :create,
+      :params => {
+        :project_id => 1,
+        :time_entry => {
+          :comments => 'Some work on TimelogControllerTest',
+          # Not the default activity
+          :activity_id => '11',
+          :spent_on => '2008-03-14',
+          :issue_id => '1',
+          :hours => '7.3',
+          :user_id => '3'
+        }
       }
-    }
-
+    )
     assert_redirected_to '/projects/ecookbook/time_entries'
 
     t = TimeEntry.last
@@ -386,19 +392,21 @@ class TimelogControllerTest < Redmine::ControllerTest
   def test_create_for_other_user_should_fail_without_permission
     Role.find_by_name('Manager').remove_permission! :log_time_for_other_users
     @request.session[:user_id] = 2
-
-    post :create, :params => {
-      :project_id => 1,
-      :time_entry => {:comments => 'Some work on TimelogControllerTest',
-        # Not the default activity
-        :activity_id => '11',
-        :spent_on => '2008-03-14',
-        :issue_id => '1',
-        :hours => '7.3',
-        :user_id => '3'
+    post(
+      :create,
+      :params => {
+        :project_id => 1,
+        :time_entry => {
+          :comments => 'Some work on TimelogControllerTest',
+          # Not the default activity
+          :activity_id => '11',
+          :spent_on => '2008-03-14',
+          :issue_id => '1',
+          :hours => '7.3',
+          :user_id => '3'
+        }
       }
-    }
-
+    )
     assert_response :success
     assert_select_error /User is invalid/
   end