]> source.dussan.org Git - redmine.git/commitdiff
cleanup: rubocop: fix Layout/IndentFirstHashElement in test/functional/comments_contr...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 23 Nov 2019 15:11:08 +0000 (15:11 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 23 Nov 2019 15:11:08 +0000 (15:11 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@19212 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/comments_controller_test.rb

index 50506576593acabf7581c70d84ae9149f0526777..adb69d7871710e854a90321c87263dafcfe12319 100644 (file)
@@ -28,12 +28,15 @@ class CommentsControllerTest < Redmine::ControllerTest
 
   def test_add_comment
     @request.session[:user_id] = 2
-    post :create, :params => {
+    post(
+      :create,
+      :params => {
         :id => 1,
         :comment => {
           :comments => 'This is a test comment'
         }
       }
+    )
     assert_redirected_to '/news/1'
 
     comment = News.find(1).comments.last
@@ -45,12 +48,15 @@ class CommentsControllerTest < Redmine::ControllerTest
   def test_empty_comment_should_not_be_added
     @request.session[:user_id] = 2
     assert_no_difference 'Comment.count' do
-      post :create, :params => {
+      post(
+        :create,
+        :params => {
           :id => 1,
           :comment => {
             :comments => ''
           }
         }
+      )
       assert_response :redirect
       assert_redirected_to '/news/1'
     end
@@ -60,12 +66,15 @@ class CommentsControllerTest < Redmine::ControllerTest
     News.any_instance.stubs(:commentable?).returns(false)
     @request.session[:user_id] = 2
     assert_no_difference 'Comment.count' do
-      post :create, :params => {
+      post(
+        :create,
+        :params => {
           :id => 1,
           :comment => {
             :comments => 'This is a test comment'
           }
         }
+      )
       assert_response 403
     end
   end
@@ -73,10 +82,13 @@ class CommentsControllerTest < Redmine::ControllerTest
   def test_destroy_comment
     comments_count = News.find(1).comments.size
     @request.session[:user_id] = 2
-    delete :destroy, :params => {
+    delete(
+      :destroy,
+      :params => {
         :id => 1,
         :comment_id => 2
       }
+    )
     assert_redirected_to '/news/1'
     assert_nil Comment.find_by_id(2)
     assert_equal comments_count - 1, News.find(1).comments.size