| 256 | |
| 257 | def test_plain_enum_does_not_create_value_entries_typeattr() -> None: |
| 258 | class Status(Enum, type_key=_unique_key("PlainEnumNoValue")): |
| 259 | ok: ClassVar[Status] = auto() |
| 260 | |
| 261 | type_info = Status.__tvm_ffi_type_info__ # ty: ignore[unresolved-attribute] |
| 262 | value_entries = core._lookup_type_attr(type_info.type_index, ENUM_VALUE_ENTRIES_ATTR) |
nothing calls this directly
no test coverage detected