chore: 문서를 작성할 때 한국어의 표현 작성 스킬 추가 및 1인칭 관점의 글 작성 검증 테스트 추가

This commit is contained in:
DongHyeonka
2026-07-29 16:48:03 +09:00
parent c39406bbdd
commit 41501b5d06
520 changed files with 95494 additions and 2231 deletions
+4
View File
@@ -33,6 +33,8 @@ class PipelineTests(unittest.TestCase):
self.assertTrue(result.final_path.is_file())
self.assertTrue(result.report_path.is_file())
self.assertTrue(result.manifest_path.is_file())
self.assertTrue((output / "final" / "provenance.md").is_file())
self.assertTrue((output / "final" / "evidence-map.json").is_file())
run_data = json.loads((output / "run.json").read_text(encoding="utf-8"))
self.assertTrue(run_data["passed"])
self.assertTrue(any("deterministic mocks" in warning for warning in result.warnings))
@@ -43,6 +45,8 @@ class PipelineTests(unittest.TestCase):
paths = {item["path"] for item in manifest["files"]}
self.assertIn("final/document.md", paths)
self.assertIn("provider-events.jsonl", paths)
self.assertIn("final/provenance.md", paths)
self.assertIn("final/evidence-map.json", paths)
self.assertNotIn("manifest.json", paths)
for item in manifest["files"]:
artifact = output / item["path"]