(ident: str)
| 187 | ), |
| 188 | ) |
| 189 | def test_valid_idents(ident: str) -> None: |
| 190 | def matcher(name: str, /, **kwargs: str | int | bool | None) -> bool: |
| 191 | return name == ident |
| 192 | |
| 193 | assert evaluate(ident, matcher) |
| 194 | |
| 195 | |
| 196 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected