File size: 540 Bytes
db6c8f1 | 1 2 3 4 5 6 7 8 9 10 11 12 | from __future__ import annotations
from ouroboros_replay.kernels.run_sabrina_m3_unclassified_module_construction import build_exact_result
def test_sabrina_m3_unclassified_module_construction_recomputes_with_all_exact_checks_passing() -> None:
result = build_exact_result()
checks = result.get("exact_checks")
assert isinstance(checks, dict) and checks
assert all(value is not False for value in checks.values())
assert isinstance(result.get("status"), str) and result["status"]
assert len(result) >= 5
|