(self)
| 5047 | self.assertEqual(form.renderer, custom) |
| 5048 | |
| 5049 | def test_get_context_errors(self): |
| 5050 | custom = CustomRenderer() |
| 5051 | form = Form(renderer=custom) |
| 5052 | context = form.get_context() |
| 5053 | self.assertEqual(context["errors"].renderer, custom) |
| 5054 | |
| 5055 | def test_boundfield_fallback(self): |
| 5056 | class RendererWithoutBoundFieldClassAttribute: |
nothing calls this directly
no test coverage detected