summaryrefslogtreecommitdiff
path: root/tests/postgres_tests/test_array.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/postgres_tests/test_array.py')
-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 db67ab714e..886a983180 100644
--- a/tests/postgres_tests/test_array.py
+++ b/tests/postgres_tests/test_array.py
@@ -677,6 +677,11 @@ class TestSimpleFormField(PostgreSQLTestCase):
self.assertIsInstance(form_field, SimpleArrayField)
self.assertEqual(form_field.max_length, 4)
+ def test_already_converted_value(self):
+ field = SimpleArrayField(forms.CharField())
+ vals = ['a', 'b', 'c']
+ self.assertEqual(field.clean(vals), vals)
+
class TestSplitFormField(PostgreSQLTestCase):