mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 21:40:28 +01:00
cleanup: rubocop: fix Layout/IndentFirstArrayElement in test/unit/issue_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@19242 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -156,7 +156,6 @@ Layout/IndentFirstArrayElement:
|
|||||||
- 'lib/redmine/wiki_formatting/textile/redcloth3.rb'
|
- 'lib/redmine/wiki_formatting/textile/redcloth3.rb'
|
||||||
- 'test/functional/auth_sources_controller_test.rb'
|
- 'test/functional/auth_sources_controller_test.rb'
|
||||||
- 'test/functional/repositories_mercurial_controller_test.rb'
|
- 'test/functional/repositories_mercurial_controller_test.rb'
|
||||||
- 'test/unit/issue_test.rb'
|
|
||||||
- 'test/unit/lib/redmine/scm/adapters/git_adapter_test.rb'
|
- 'test/unit/lib/redmine/scm/adapters/git_adapter_test.rb'
|
||||||
- 'test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb'
|
- 'test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb'
|
||||||
- 'test/unit/project_test.rb'
|
- 'test/unit/project_test.rb'
|
||||||
|
|||||||
@@ -959,10 +959,16 @@ class IssueTest < ActiveSupport::TestCase
|
|||||||
assert_equal 'value1', issue.custom_field_value(cf1)
|
assert_equal 'value1', issue.custom_field_value(cf1)
|
||||||
assert_nil issue.custom_field_value(cf2)
|
assert_nil issue.custom_field_value(cf2)
|
||||||
|
|
||||||
issue.send :safe_attributes=, {'custom_fields' => [
|
issue.send(
|
||||||
|
:safe_attributes=,
|
||||||
|
{
|
||||||
|
'custom_fields' =>
|
||||||
|
[
|
||||||
{'id' => cf1.id.to_s, 'value' => 'valuea'},
|
{'id' => cf1.id.to_s, 'value' => 'valuea'},
|
||||||
{'id' => cf2.id.to_s, 'value' => 'valueb'}
|
{'id' => cf2.id.to_s, 'value' => 'valueb'}
|
||||||
]}, user
|
]
|
||||||
|
}, user
|
||||||
|
)
|
||||||
assert_equal 'valuea', issue.custom_field_value(cf1)
|
assert_equal 'valuea', issue.custom_field_value(cf1)
|
||||||
assert_nil issue.custom_field_value(cf2)
|
assert_nil issue.custom_field_value(cf2)
|
||||||
end
|
end
|
||||||
@@ -2986,9 +2992,7 @@ class IssueTest < ActiveSupport::TestCase
|
|||||||
def test_save_attachments_with_array_should_warn_about_missing_tokens
|
def test_save_attachments_with_array_should_warn_about_missing_tokens
|
||||||
set_tmp_attachments_directory
|
set_tmp_attachments_directory
|
||||||
issue = Issue.generate!
|
issue = Issue.generate!
|
||||||
issue.save_attachments([
|
issue.save_attachments([{'token' => 'missing'}])
|
||||||
{'token' => 'missing'}
|
|
||||||
])
|
|
||||||
assert !issue.save
|
assert !issue.save
|
||||||
assert issue.errors[:base].present?
|
assert issue.errors[:base].present?
|
||||||
assert_equal 0, issue.reload.attachments.count
|
assert_equal 0, issue.reload.attachments.count
|
||||||
|
|||||||
Reference in New Issue
Block a user