diff --git a/tests/test_issue_536_verification.py b/tests/test_issue_536_verification.py new file mode 100644 index 0000000..efbb8dd --- /dev/null +++ b/tests/test_issue_536_verification.py @@ -0,0 +1,19 @@ +from pathlib import Path + +ROOT = Path(__file__).resolve().parents[1] +DOC = ROOT / "docs" / "issue-536-verification.md" + + +def test_issue_536_verification_doc_exists_and_points_to_real_artifacts() -> None: + assert DOC.exists(), "missing docs/issue-536-verification.md" + text = DOC.read_text(encoding="utf-8") + for snippet in ( + "# Issue #536 Verification", + "evennia_tools/bezalel_layout.py", + "scripts/evennia/build_bezalel_world.py", + "tests/test_bezalel_evennia_layout.py", + "docs/BEZALEL_EVENNIA_WORLD.md", + "portal commands", + "already implemented on `main`", + ): + assert snippet in text