(self)
| 1505 | ) |
| 1506 | |
| 1507 | def test_render(self): |
| 1508 | self.check_html( |
| 1509 | SplitArrayWidget(forms.TextInput(), size=2), |
| 1510 | "array", |
| 1511 | None, |
| 1512 | """ |
| 1513 | <input name="array_0" type="text"> |
| 1514 | <input name="array_1" type="text"> |
| 1515 | """, |
| 1516 | ) |
| 1517 | |
| 1518 | def test_render_attrs(self): |
| 1519 | self.check_html( |
nothing calls this directly
no test coverage detected