summaryrefslogtreecommitdiff
path: root/tests/postgres_tests
diff options
context:
space:
mode:
authorRomulo Furtado <romulo.furtado@loggi.com>2017-04-06 11:06:11 -0300
committerTim Graham <timograham@gmail.com>2017-06-13 19:44:24 -0400
commit9dd244394236388c3479ab202a0ec31055f7ec09 (patch)
tree9190be9fc08c17df3e3788be3be5c408b32298da /tests/postgres_tests
parentde9294727c95d6acec82f335c8517930c2f211b1 (diff)
Fixed #27161 -- Fixed form validation when an ArrayField's base_field has choices.
Diffstat (limited to 'tests/postgres_tests')
-rw-r--r--tests/postgres_tests/test_array.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/postgres_tests/test_array.py b/tests/postgres_tests/test_array.py
index a66c92a016..e2e4ccdeb2 100644
--- a/tests/postgres_tests/test_array.py
+++ b/tests/postgres_tests/test_array.py
@@ -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']