mirror of
https://github.com/django/django.git
synced 2025-08-27 05:54:28 +00:00
Fixed #27161 -- Fixed form validation when an ArrayField's base_field has choices.
This commit is contained in:
parent
de9294727c
commit
9dd2443942
2 changed files with 9 additions and 0 deletions
|
@ -686,6 +686,11 @@ class TestSimpleFormField(PostgreSQLTestCase):
|
|||
self.assertIsInstance(form_field, SimpleArrayField)
|
||||
self.assertEqual(form_field.max_length, 4)
|
||||
|
||||
def test_model_field_choices(self):
|
||||
model_field = ArrayField(models.IntegerField(choices=((1, 'A'), (2, 'B'))))
|
||||
form_field = model_field.formfield()
|
||||
self.assertEqual(form_field.clean('1,2'), [1, 2])
|
||||
|
||||
def test_already_converted_value(self):
|
||||
field = SimpleArrayField(forms.CharField())
|
||||
vals = ['a', 'b', 'c']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue