(self)
| 19 | |
| 20 | class GraphSuite(Suite): |
| 21 | def test_topsort_empty(self) -> None: |
| 22 | data: dict[AbstractSet[str], set[AbstractSet[str]]] = {} |
| 23 | assert_equal(list(topsort(data)), []) |
| 24 | |
| 25 | def test_topsort(self) -> None: |
| 26 | a = frozenset({"A"}) |
nothing calls this directly
no test coverage detected