(tmp_path)
| 112 | |
| 113 | |
| 114 | def test_restore_iteration_missing_raises(tmp_path): |
| 115 | _make_skill(tmp_path, "demo") |
| 116 | save_iteration(tmp_path, "demo") |
| 117 | with pytest.raises(FileNotFoundError): |
| 118 | restore_iteration(tmp_path, "demo", n=99) |
| 119 | |
| 120 | |
| 121 | def test_restore_iteration_no_workspace_raises(tmp_path): |
nothing calls this directly
no test coverage detected