Browse Source

Fix RuboCop offense Layout/FirstHashElementIndentation (#36919).


git-svn-id: https://svn.redmine.org/redmine/trunk@21696 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/5.1.0
Go MAEDA 1 year ago
parent
commit
856f104031

+ 26
- 20
test/functional/issue_relations_controller_test.rb View File

@@ -243,17 +243,20 @@ class IssueRelationsControllerTest < Redmine::ControllerTest

def test_bulk_create_with_multiple_issue_to_id_issues
assert_difference 'IssueRelation.count', +3 do
post :create, :params => {
:issue_id => 1,
:relation => {
# js autocomplete adds a comma at the end
# issue to id should accept both id and hash with id
:issue_to_id => '2,3,#7, ',
:relation_type => 'relates',
:delay => ''
}
},
:xhr => true
post(
:create,
:params => {
:issue_id => 1,
:relation => {
# js autocomplete adds a comma at the end
# issue to id should accept both id and hash with id
:issue_to_id => '2,3,#7, ',
:relation_type => 'relates',
:delay => ''
}
},
:xhr => true
)
end

assert_response :success
@@ -269,15 +272,18 @@ class IssueRelationsControllerTest < Redmine::ControllerTest
def test_bulk_create_should_show_errors
with_settings :cross_project_issue_relations => '0' do
assert_difference 'IssueRelation.count', +3 do
post :create, :params => {
:issue_id => 1,
:relation => {
:issue_to_id => '1,2,3,4,5,7',
:relation_type => 'relates',
:delay => ''
}
},
:xhr => true
post(
:create,
:params => {
:issue_id => 1,
:relation => {
:issue_to_id => '1,2,3,4,5,7',
:relation_type => 'relates',
:delay => ''
}
},
:xhr => true
)
end
end


+ 13
- 10
test/functional/users_controller_test.rb View File

@@ -682,16 +682,19 @@ class UsersControllerTest < Redmine::ControllerTest
end

def test_update_without_generate_password_should_not_change_password
put :update, :params => {
:id => 2, :user => {
:firstname => 'changed',
:generate_password => '0',
:password => '',
:password_confirmation => ''
},
:send_information => '1'
}

put(
:update,
:params => {
:id => 2,
:user => {
:firstname => 'changed',
:generate_password => '0',
:password => '',
:password_confirmation => ''
},
:send_information => '1'
}
)
user = User.find(2)
assert_equal 'changed', user.firstname
assert user.check_password?('jsmith')

Loading…
Cancel
Save