cleanup: rubocop: fix Layout/IndentFirstHashElement in test/integration/issues_test.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@19236 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2019-11-24 05:43:46 +00:00
parent 925d5ba5b7
commit cdaa151efd

View File

@@ -44,7 +44,9 @@ class IssuesTest < Redmine::IntegrationTest
assert_response :success assert_response :success
issue = new_record(Issue) do issue = new_record(Issue) do
post '/projects/ecookbook/issues', :params => { post(
'/projects/ecookbook/issues',
:params => {
:issue => { :issue => {
:tracker_id => "1", :tracker_id => "1",
:start_date => "2006-12-26", :start_date => "2006-12-26",
@@ -58,6 +60,7 @@ class IssuesTest < Redmine::IntegrationTest
:custom_field_values => {'2' => 'Value for field 2'} :custom_field_values => {'2' => 'Value for field 2'}
} }
} }
)
end end
# check redirection # check redirection
assert_redirected_to :controller => 'issues', :action => 'show', :id => issue assert_redirected_to :controller => 'issues', :action => 'show', :id => issue
@@ -73,12 +76,15 @@ class IssuesTest < Redmine::IntegrationTest
Role.anonymous.remove_permission! :add_issues Role.anonymous.remove_permission! :add_issues
assert_no_difference 'Issue.count' do assert_no_difference 'Issue.count' do
post '/projects/1/issues', :params => { post(
'/projects/1/issues',
:params => {
:issue => { :issue => {
:tracker_id => "1", :tracker_id => "1",
:subject => "new test issue" :subject => "new test issue"
} }
} }
)
end end
assert_response 302 assert_response 302
end end
@@ -88,12 +94,15 @@ class IssuesTest < Redmine::IntegrationTest
Member.create!(:project_id => 1, :principal => Group.anonymous, :role_ids => [3]) Member.create!(:project_id => 1, :principal => Group.anonymous, :role_ids => [3])
issue = new_record(Issue) do issue = new_record(Issue) do
post '/projects/1/issues', :params => { post(
'/projects/1/issues',
:params => {
:issue => { :issue => {
:tracker_id => "1", :tracker_id => "1",
:subject => "new test issue" :subject => "new test issue"
} }
} }
)
assert_response 302 assert_response 302
end end
assert_equal User.anonymous, issue.author assert_equal User.anonymous, issue.author
@@ -104,13 +113,18 @@ class IssuesTest < Redmine::IntegrationTest
log_user('jsmith', 'jsmith') log_user('jsmith', 'jsmith')
set_tmp_attachments_directory set_tmp_attachments_directory
attachment = new_record(Attachment) do attachment = new_record(Attachment) do
put '/issues/1', :params => { put(
'/issues/1',
:params => {
:issue => {:notes => 'Some notes'}, :issue => {:notes => 'Some notes'},
:attachments => { :attachments => {
'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain'), '1' => {
'description' => 'This is an attachment'} 'file' => uploaded_test_file('testfile.txt', 'text/plain'),
'description' => 'This is an attachment'
}
} }
} }
)
assert_redirected_to "/issues/1" assert_redirected_to "/issues/1"
end end
assert_equal Issue.find(1), attachment.container assert_equal Issue.find(1), attachment.container
@@ -177,10 +191,7 @@ class IssuesTest < Redmine::IntegrationTest
end end
def test_other_formats_links_on_index_without_project_id_in_url def test_other_formats_links_on_index_without_project_id_in_url
get '/issues', :params => { get('/issues', :params => {:project_id => 'ecookbook'})
:project_id => 'ecookbook'
}
%w(Atom PDF CSV).each do |format| %w(Atom PDF CSV).each do |format|
assert_select 'a[rel=nofollow][href=?]', "/issues.#{format.downcase}?project_id=ecookbook", :text => format assert_select 'a[rel=nofollow][href=?]', "/issues.#{format.downcase}?project_id=ecookbook", :text => format
end end
@@ -244,7 +255,9 @@ class IssuesTest < Redmine::IntegrationTest
# Create issue # Create issue
issue = new_record(Issue) do issue = new_record(Issue) do
post '/projects/ecookbook/issues', :params => { post(
'/projects/ecookbook/issues',
:params => {
:issue => { :issue => {
:tracker_id => '1', :tracker_id => '1',
:priority_id => '4', :priority_id => '4',
@@ -252,6 +265,7 @@ class IssuesTest < Redmine::IntegrationTest
:custom_field_values => {@field.id.to_s => users.first.id.to_s} :custom_field_values => {@field.id.to_s => users.first.id.to_s}
} }
} }
)
assert_response 302 assert_response 302
end end
@@ -270,12 +284,15 @@ class IssuesTest < Redmine::IntegrationTest
with_settings :default_language => 'en' do with_settings :default_language => 'en' do
# Update issue # Update issue
assert_difference 'Journal.count' do assert_difference 'Journal.count' do
put "/issues/#{issue.id}", :params => { put(
"/issues/#{issue.id}",
:params => {
:issue => { :issue => {
:notes => 'Updating custom field', :notes => 'Updating custom field',
:custom_field_values => {@field.id.to_s => new_tester.id.to_s} :custom_field_values => {@field.id.to_s => new_tester.id.to_s}
} }
} }
)
assert_redirected_to "/issues/#{issue.id}" assert_redirected_to "/issues/#{issue.id}"
end end
# Issue view # Issue view