100% Coverage

This commit is contained in:
Renn F
2026-05-06 21:02:31 +02:00
parent 64c48356d0
commit 9aa30fb945
106 changed files with 28143 additions and 423 deletions
@@ -94,3 +94,10 @@ def test_get_readable_journals_for_developer() -> None:
def test_get_readable_journals_for_unknown() -> None:
info = get_readable_journals("ghost-agent")
assert info["scope"] == "none"
def test_auditor_can_read_other_auditor_protected_journal() -> None:
"""Line 72: ceo/auditor reader → True for protected journal."""
can, reason = can_read_journal("auditor", "ceo")
assert can is True
assert reason == "OK"