summaryrefslogtreecommitdiff
path: root/tests/forms_tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests/forms_tests')
-rw-r--r--tests/forms_tests/field_tests/test_multivaluefield.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/forms_tests/field_tests/test_multivaluefield.py b/tests/forms_tests/field_tests/test_multivaluefield.py
index e77bb0df26..cd446d07ce 100644
--- a/tests/forms_tests/field_tests/test_multivaluefield.py
+++ b/tests/forms_tests/field_tests/test_multivaluefield.py
@@ -62,6 +62,21 @@ class MultiValueFieldTest(SimpleTestCase):
'some text,JP,2007-04-25 06:24:00',
)
+ def test_clean_disabled_multivalue(self):
+ class ComplexFieldForm(Form):
+ f = ComplexField(disabled=True, widget=ComplexMultiWidget)
+
+ inputs = (
+ 'some text,JP,2007-04-25 06:24:00',
+ ['some text', ['J', 'P'], ['2007-04-25', '6:24:00']],
+ )
+ for data in inputs:
+ with self.subTest(data=data):
+ form = ComplexFieldForm({}, initial={'f': data})
+ form.full_clean()
+ self.assertEqual(form.errors, {})
+ self.assertEqual(form.cleaned_data, {'f': inputs[0]})
+
def test_bad_choice(self):
msg = "'Select a valid choice. X is not one of the available choices.'"
with self.assertRaisesMessage(ValidationError, msg):