| 98 | |
| 99 | def test_formfield_disabled(self): |
| 100 | class JSONForm(Form): |
| 101 | json_field = JSONField(disabled=True) |
| 102 | |
| 103 | form = JSONForm({"json_field": '["bar"]'}, initial={"json_field": ["foo"]}) |
| 104 | self.assertIn("["foo"]</textarea>", form.as_p()) |