(self)
| 20 | assert attr in module.__all__ # type: ignore |
| 21 | |
| 22 | def test_pytest_mark_notcallable(self) -> None: |
| 23 | mark = MarkGenerator(_ispytest=True) |
| 24 | with pytest.raises(TypeError): |
| 25 | mark() # type: ignore[operator] |
| 26 | |
| 27 | def test_mark_with_param(self): |
| 28 | def some_function(abc): |
nothing calls this directly
no test coverage detected