()
| 83 | |
| 84 | |
| 85 | def test_contains_and_len() -> None: |
| 86 | reg = RuntimeTaskRegistry() |
| 87 | reg.upsert(_make_state("b1")) |
| 88 | assert "b1" in reg |
| 89 | assert "missing" not in reg |
| 90 | assert len(reg) == 1 |
| 91 | |
| 92 | |
| 93 | def test_iter_yields_snapshot() -> None: |
nothing calls this directly
no test coverage detected