| 98 | |
| 99 | def test_get_missing_raises() -> None: |
| 100 | class Missing(Enum, type_key=_unique_key("Missing")): |
| 101 | flag: bool |
| 102 | yes: ClassVar[Missing] = entry(flag=True) |
| 103 | |
| 104 | with pytest.raises(KeyError): |
| 105 | Missing.get("no-such-entry") |
nothing calls this directly
no test coverage detected