(path: Path)
| 194 | assert "synth content" in text |
| 195 | |
| 196 | |
| 197 | def test_read_prior_artifact_finds_newest_file(run_dir: Path) -> None: |
| 198 | _write_prior_artifact(run_dir, 1, "goal.md", "old") |
| 199 | _write_prior_artifact(run_dir, 3, "goal.md", "new") |
| 200 | found = rc_executor._read_prior_artifact(run_dir, "goal.md") |
| 201 | assert found == "new" |
no test coverage detected