19 lines
566 B
Python
19 lines
566 B
Python
from pathlib import Path
|
|
|
|
DOC = Path("docs/issue-680-verification.md")
|
|
|
|
|
|
def test_issue_680_verification_doc_exists_and_cites_existing_artifact():
|
|
assert DOC.exists(), "issue #680 verification doc must exist"
|
|
text = DOC.read_text(encoding="utf-8")
|
|
required = [
|
|
"Issue #680 Verification",
|
|
"genomes/fleet-ops-GENOME.md",
|
|
"tests/test_fleet_ops_genome.py",
|
|
"PR #697",
|
|
"PR #770",
|
|
"already implemented on main",
|
|
]
|
|
missing = [item for item in required if item not in text]
|
|
assert not missing, missing
|