code layout clean up of test_errors_full_messages_should_include_custom_fields_errors at test/unit/issue_test.rb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7473 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
d9a22bb7c3
commit
f7bdf375cd
|
@ -185,7 +185,9 @@ class IssueTest < ActiveSupport::TestCase
|
|||
def test_errors_full_messages_should_include_custom_fields_errors
|
||||
field = IssueCustomField.find_by_name('Database')
|
||||
|
||||
issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 1, :status_id => 1, :subject => 'test_create', :description => 'IssueTest#test_create_with_required_custom_field')
|
||||
issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 1,
|
||||
:status_id => 1, :subject => 'test_create',
|
||||
:description => 'IssueTest#test_create_with_required_custom_field')
|
||||
assert issue.available_custom_fields.include?(field)
|
||||
# Invalid value
|
||||
issue.custom_field_values = { field.id => 'SQLServer' }
|
||||
|
|
Loading…
Reference in New Issue