test_k8_lanes.py
python
sha256:a78e7e5a8740e03315f325d19edeb3aa1b306b3337d04abbaa9a9e0f3bbeb7a1
docs: MuseHub-first before ISR #74 — staging solidify NEXT
Human
2 days ago
| 1 | """Unit tests for K8 multi-lane living docs.""" |
| 2 | |
| 3 | from __future__ import annotations |
| 4 | |
| 5 | from pathlib import Path |
| 6 | |
| 7 | from adapters.config import resolve_lane_docs |
| 8 | from cli.docs_paths import living_doc_destinations |
| 9 | from tests.support import load_fixture_config |
| 10 | |
| 11 | |
| 12 | def test_living_doc_destinations_includes_all_lanes(repo_root: Path) -> None: |
| 13 | cfg = load_fixture_config(repo_root, "config-two-lane.yaml") |
| 14 | dests = living_doc_destinations(cfg) |
| 15 | assert "QUEUE_HANDOVER.md" in dests |
| 16 | assert "videos/_active/HANDOVER.md" in dests |
| 17 | assert "videos/_active/ROADMAP.md" in dests |
| 18 | |
| 19 | |
| 20 | def test_resolve_lane_active(repo_root: Path) -> None: |
| 21 | cfg = load_fixture_config(repo_root, "config-two-lane.yaml") |
| 22 | active = resolve_lane_docs(cfg, "active") |
| 23 | assert active.roadmap == "videos/_active/ROADMAP.md" |
File History
2 commits
sha256:a78e7e5a8740e03315f325d19edeb3aa1b306b3337d04abbaa9a9e0f3bbeb7a1
docs: MuseHub-first before ISR #74 — staging solidify NEXT
Human
2 days ago
sha256:4671b7f787ddbe63ced31c895b688c77ab495653b65a730b423329f26b3c1439
feat: K1-P1 complete — agent provenance, build-verification…
Sonnet 4.6
patch
54 days ago