(paginate: _PaginateCallable, page: t.Any, per_page: t.Any)
| 192 | ("page", "per_page"), [("abc", None), (None, "abc"), (0, None), (None, -1)] |
| 193 | ) |
| 194 | def test_error_out(paginate: _PaginateCallable, page: t.Any, per_page: t.Any) -> None: |
| 195 | with pytest.raises(NotFound): |
| 196 | paginate(page=page, per_page=per_page) |
| 197 | |
| 198 | |
| 199 | @pytest.mark.usefixtures("app_ctx") |
nothing calls this directly
no test coverage detected
searching dependent graphs…