pytest.mark.parametrize(
"func, kwargs",
[
("len", {}),
("capitalize", {}),
("casefold", {}),
("contains", {"pat": "a"}),
("count", {"pat": "a"}),
| 1 | from __future__ import annotations |
| 2 | |
| 3 | import pytest |
| 4 |
nothing calls this directly
no outgoing calls
no test coverage detected