summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-11-23 15:11:08 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-11-23 15:11:08 +0000
commiteb3595d11f3b194824f02ceec94f89646c3385ec (patch)
treeee47f6e0b50eaa15759b0051c0199ba3457ce337 /test
parentcefde24aca947427493babf1ea373502a70cf433 (diff)
downloadredmine-eb3595d11f3b194824f02ceec94f89646c3385ec.tar.gz
redmine-eb3595d11f3b194824f02ceec94f89646c3385ec.zip
cleanup: rubocop: fix Layout/IndentFirstHashElement in test/functional/comments_controller_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@19212 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r--test/functional/comments_controller_test.rb20
1 files changed, 16 insertions, 4 deletions
diff --git a/test/functional/comments_controller_test.rb b/test/functional/comments_controller_test.rb
index 505065765..adb69d787 100644
--- a/test/functional/comments_controller_test.rb
+++ b/test/functional/comments_controller_test.rb
@@ -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