From: Go MAEDA Date: Fri, 20 Mar 2020 02:31:13 +0000 (+0000) Subject: Test for r19588 (#33085). X-Git-Tag: 4.2.0~1149 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=67212d1d00fe59b280cdf836a868baafba6cc2ba;p=redmine.git Test for r19588 (#33085). Patch by Mizuki ISHIKAWA. git-svn-id: http://svn.redmine.org/redmine/trunk@19589 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/functional/enumerations_controller_test.rb b/test/functional/enumerations_controller_test.rb index 05e631106..438ef9f7b 100644 --- a/test/functional/enumerations_controller_test.rb +++ b/test/functional/enumerations_controller_test.rb @@ -84,6 +84,21 @@ class EnumerationsControllerTest < Redmine::ControllerTest assert_equal "sample", Enumeration.find_by(:name => 'Sample').custom_field_values.last.value end + def test_create_with_multiple_select_list_custom_fields + custom_field = IssuePriorityCustomField.generate!(:field_format => 'list', :multiple => true, :possible_values => ['1', '2', '3', '4']) + assert_difference 'IssuePriority.count' do + post :create, :params => { + :enumeration => { + :type => 'IssuePriority', + :name => 'Sample', + :custom_field_values => {custom_field.id.to_s => ['1', '2']} + } + } + end + assert_redirected_to '/enumerations' + assert_equal ['1', '2'].sort, Enumeration.find_by(:name => 'Sample').custom_field_values.last.value.sort + end + def test_create_with_failure assert_no_difference 'IssuePriority.count' do post :create, :params => {