Apply Layout/LineLength rubocop rule
Note we're excluding a few files: * Configuration files that weren't generated by us * Migration files that weren't generated by us * The Gemfile, since it includes an important comment that must be on the same line as the gem declaration * The Budget::Stats class, since the heading statistics are a mess and having shorter lines would require a lot of refactoring
This commit is contained in:
@@ -6,7 +6,9 @@ describe "Admin hidden users", :admin do
|
||||
|
||||
debate1 = create(:debate, :hidden, author: user)
|
||||
debate2 = create(:debate, author: user)
|
||||
comment1 = create(:comment, :hidden, user: user, commentable: debate2, body: "You have the manners of a beggar")
|
||||
comment1 = create(:comment, :hidden, user: user,
|
||||
commentable: debate2,
|
||||
body: "You have the manners of a beggar")
|
||||
comment2 = create(:comment, user: user, commentable: debate2, body: "Not Spam")
|
||||
|
||||
visit admin_hidden_user_path(user)
|
||||
|
||||
Reference in New Issue
Block a user