1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

code cleanup: rubocop: fix Layout/ClosingHeredocIndentation in test/integration/api_test/issues_test.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@18538 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2019-09-25 17:55:26 +00:00
parent 2e1da01790
commit ea3c11bf32
2 changed files with 31 additions and 36 deletions

View File

@ -89,7 +89,6 @@ Layout/ClosingHeredocIndentation:
Exclude: Exclude:
- 'app/models/setting.rb' - 'app/models/setting.rb'
- 'test/helpers/application_helper_test.rb' - 'test/helpers/application_helper_test.rb'
- 'test/integration/api_test/issues_test.rb'
- 'test/integration/lib/redmine/hook_test.rb' - 'test/integration/lib/redmine/hook_test.rb'
- 'test/unit/lib/redmine/unified_diff_test.rb' - 'test/unit/lib/redmine/unified_diff_test.rb'
- 'test/unit/lib/redmine/wiki_formatting/macros_test.rb' - 'test/unit/lib/redmine/wiki_formatting/macros_test.rb'

View File

@ -905,26 +905,24 @@ JSON
def test_create_issue_with_multiple_uploaded_files_as_xml def test_create_issue_with_multiple_uploaded_files_as_xml
token1 = xml_upload('File content 1', credentials('jsmith')) token1 = xml_upload('File content 1', credentials('jsmith'))
token2 = xml_upload('File content 2', credentials('jsmith')) token2 = xml_upload('File content 2', credentials('jsmith'))
payload = <<~XML
payload = <<-XML <?xml version="1.0" encoding="UTF-8" ?>
<?xml version="1.0" encoding="UTF-8" ?> <issue>
<issue> <project_id>1</project_id>
<project_id>1</project_id> <tracker_id>1</tracker_id>
<tracker_id>1</tracker_id> <subject>Issue with multiple attachments</subject>
<subject>Issue with multiple attachments</subject> <uploads type="array">
<uploads type="array"> <upload>
<upload> <token>#{token1}</token>
<token>#{token1}</token> <filename>test1.txt</filename>
<filename>test1.txt</filename> </upload>
</upload> <upload>
<upload> <token>#{token2}</token>
<token>#{token2}</token> <filename>test1.txt</filename>
<filename>test1.txt</filename> </upload>
</upload> </uploads>
</uploads> </issue>
</issue> XML
XML
assert_difference 'Issue.count' do assert_difference 'Issue.count' do
post '/issues.xml', post '/issues.xml',
:params => payload, :params => payload,
@ -938,21 +936,19 @@ XML
def test_create_issue_with_multiple_uploaded_files_as_json def test_create_issue_with_multiple_uploaded_files_as_json
token1 = json_upload('File content 1', credentials('jsmith')) token1 = json_upload('File content 1', credentials('jsmith'))
token2 = json_upload('File content 2', credentials('jsmith')) token2 = json_upload('File content 2', credentials('jsmith'))
payload = <<~JSON
payload = <<-JSON {
{ "issue": {
"issue": { "project_id": "1",
"project_id": "1", "tracker_id": "1",
"tracker_id": "1", "subject": "Issue with multiple attachments",
"subject": "Issue with multiple attachments", "uploads": [
"uploads": [ {"token": "#{token1}", "filename": "test1.txt"},
{"token": "#{token1}", "filename": "test1.txt"}, {"token": "#{token2}", "filename": "test2.txt"}
{"token": "#{token2}", "filename": "test2.txt"} ]
] }
} }
} JSON
JSON
assert_difference 'Issue.count' do assert_difference 'Issue.count' do
post '/issues.json', post '/issues.json',
:params => payload, :params => payload,