pytest.mark.parametrize(
"template, kwargs, expected",
[
("/v1/{id}", dict(id="abc"), "/v1/abc"),
("/v1/{a}/{b}", dict(a="x", b="y"), "/v1/x/y"),
("/v1/{a}{b}/path/{c}?
| 1 | from __future__ import annotations |
| 2 | |
| 3 | from typing import Any |
| 4 |
nothing calls this directly
no outgoing calls
no test coverage detected