shorten long line of test/integration/attachments_test.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@20525 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2020-11-30 15:48:59 +00:00
parent 8fe020049d
commit cb7d01219b

View File

@@ -197,8 +197,11 @@ class AttachmentsTest < Redmine::IntegrationTest
attachment = Attachment.order('id DESC').first
attachment_path = "/attachments/#{attachment.id}.js?attachment_id=1"
assert_include "href: '#{attachment_path}'", response.body, "Path to attachment: #{attachment_path} not found in response:\n#{response.body}"
assert_include(
"href: '#{attachment_path}'",
response.body,
"Path to attachment: #{attachment_path} not found in response:\n#{response.body}"
)
assert_difference 'Attachment.count', -1 do
delete attachment_path
assert_response :success