Skip to content

Commit 0beb815

Browse files
tbitcsoz-agent
andcommitted
fix: test refs for v0.2.0 release
Co-Authored-By: Oz <oz-agent@warp.dev>
2 parents 9fe46da + 5788e82 commit 0beb815

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

tests/sandbox/test_sandbox_new.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -71,18 +71,18 @@ def test_full_scaffold_workflow(self, tmp_path: Path) -> None:
7171
# Modular governance
7272
gov = project / "docs" / "governance"
7373
for f in [
74-
"rules.md",
75-
"workflow.md",
76-
"roles.md",
77-
"context-budget.md",
78-
"verification.md",
79-
"drift-metrics.md",
74+
"RULES.md",
75+
"WORKFLOW.md",
76+
"ROLES.md",
77+
"CONTEXT-BUDGET.md",
78+
"VERIFICATION.md",
79+
"DRIFT-METRICS.md",
8080
]:
8181
assert (gov / f).exists(), f"Missing governance file: {f}"
8282

8383
# Project docs
84-
assert (project / "docs" / "architecture.md").exists()
85-
assert (project / "docs" / "workflow.md").exists()
84+
assert (project / "docs" / "ARCHITECTURE.md").exists()
85+
assert (project / "docs" / "WORKFLOW.md").exists()
8686
assert (project / "docs" / "REQUIREMENTS.md").exists()
8787
assert (project / "docs" / "TEST_SPEC.md").exists()
8888

tests/sandbox/test_sandbox_types.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def test_patent_scaffold(self, tmp_path: Path) -> None:
5757
assert "TEST-CLM-001" in tests
5858

5959
# Verification.md has patent tools
60-
verification = (project / "docs" / "governance" / "verification.md").read_text(
60+
verification = (project / "docs" / "governance" / "VERIFICATION.md").read_text(
6161
encoding="utf-8"
6262
)
6363
assert "vale" in verification
@@ -113,7 +113,7 @@ def test_rust_scaffold_ci(self, tmp_path: Path) -> None:
113113
assert "clippy" in agents.lower() or "cargo" in agents.lower()
114114

115115
# Verification tools
116-
v = (project / "docs" / "governance" / "verification.md").read_text(encoding="utf-8")
116+
v = (project / "docs" / "governance" / "VERIFICATION.md").read_text(encoding="utf-8")
117117
assert "cargo clippy" in v
118118
assert "cargo test" in v
119119

@@ -219,7 +219,7 @@ def test_legal_scaffold(self, tmp_path: Path) -> None:
219219
assert "regulatory" in agents.lower() or "compliance" in agents.lower()
220220

221221
# Verification has compliance tool
222-
v = (project / "docs" / "governance" / "verification.md").read_text(encoding="utf-8")
222+
v = (project / "docs" / "governance" / "VERIFICATION.md").read_text(encoding="utf-8")
223223
assert "regulation-ref-check" in v
224224

225225

0 commit comments

Comments
 (0)