feat(task-022): expand discovery coverage

This commit is contained in:
2026-06-04 07:42:48 +01:00
parent a0b28e7d8d
commit c72ad6995e
8 changed files with 341 additions and 25 deletions
+3 -3
View File
@@ -28,14 +28,14 @@ def test_mapping_file_exists() -> None:
assert mapping_path.exists(), f"Mapping file missing: {mapping_path}"
def test_mapping_contains_all_10_questions() -> None:
def test_mapping_contains_all_questions() -> None:
"""Every core discovery question must appear in the mapping."""
from rdb_discovery.templates import CORE_QUESTIONS
root = _get_project_root()
mapping_path = root / MAPPING_FILE
content = mapping_path.read_text(encoding="utf-8")
for question in CORE_QUESTIONS:
assert question in content, f"Question not mapped: {question}"