from __future__ import annotations import inspect from ouroboros_replay.replay import KERNEL_NAMES, compute_all def test_derivation_inventory_is_exact() -> None: assert len(KERNEL_NAMES) == 49 assert len(set(KERNEL_NAMES)) == 49 def test_compute_path_cannot_read_expected_answers() -> None: source = inspect.getsource(compute_all).lower() assert "reference" not in source assert "expected" not in source