()
| 205 | |
| 206 | @pytest.fixture(scope="module") |
| 207 | def checklist(): |
| 208 | return Checklist( |
| 209 | title=ChecklistTestBase.title, |
| 210 | title_entities=ChecklistTestBase.title_entities, |
| 211 | tasks=ChecklistTestBase.tasks, |
| 212 | others_can_add_tasks=ChecklistTestBase.others_can_add_tasks, |
| 213 | others_can_mark_tasks_as_done=ChecklistTestBase.others_can_mark_tasks_as_done, |
| 214 | ) |
| 215 | |
| 216 | |
| 217 | class TestChecklistWithoutRequest(ChecklistTestBase): |
nothing calls this directly
no test coverage detected
searching dependent graphs…