(template: str, kwargs: dict[str, Any], expected: str)
| 57 | ], |
| 58 | ) |
| 59 | def test_interpolation(template: str, kwargs: dict[str, Any], expected: str) -> None: |
| 60 | assert path_template(template, **kwargs) == expected |
| 61 | |
| 62 | |
| 63 | def test_missing_kwarg_raises_key_error() -> None: |
nothing calls this directly
no test coverage detected