(qtbot, db)
| 193 | |
| 194 | @pytest.fixture |
| 195 | def widget(qtbot, db): |
| 196 | w = TranscriptionTasksTableWidget() |
| 197 | qtbot.addWidget(w) |
| 198 | w.model().select() |
| 199 | assert w.model().rowCount() == 2 |
| 200 | return w |
| 201 | |
| 202 | |
| 203 | class TestTranscriptionTasksTableWidget: |
nothing calls this directly
no test coverage detected