diff options
| author | Olexander Yermakov <mannavard1611@gmail.com> | 2016-07-26 08:18:08 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-07-27 08:14:14 -0400 |
| commit | 68de48c96328e13d5dbdb1f3006e4a1ca74f3c34 (patch) | |
| tree | 2f789d5bce2c93e9640d32de703fd30f527a4391 /tests/postgres_tests/test_json.py | |
| parent | a5f85d891b51d7ceb4f9e422e3e4f5c741062288 (diff) | |
Fixed #26949 -- Fixed crash of disabled forms.JSONField.
Diffstat (limited to 'tests/postgres_tests/test_json.py')
| -rw-r--r-- | tests/postgres_tests/test_json.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/postgres_tests/test_json.py b/tests/postgres_tests/test_json.py index 0165cabfd9..b88d103761 100644 --- a/tests/postgres_tests/test_json.py +++ b/tests/postgres_tests/test_json.py @@ -260,6 +260,14 @@ class TestFormField(PostgreSQLTestCase): form_field = model_field.formfield() self.assertIsInstance(form_field, forms.JSONField) + def test_formfield_disabled(self): + class JsonForm(Form): + name = CharField() + jfield = forms.JSONField(disabled=True) + + form = JsonForm({'name': 'xyz', 'jfield': '["bar"]'}, initial={'jfield': ['foo']}) + self.assertIn('["foo"]</textarea>', form.as_p()) + def test_prepare_value(self): field = forms.JSONField() self.assertEqual(field.prepare_value({'a': 'b'}), '{"a": "b"}') |
