(self, project_dir)
| 4101 | assert "step-one" in loaded.step_results |
| 4102 | |
| 4103 | def test_load_not_found(self, project_dir): |
| 4104 | from specify_cli.workflows.engine import RunState |
| 4105 | |
| 4106 | with pytest.raises(FileNotFoundError): |
| 4107 | RunState.load("nonexistent", project_dir) |
| 4108 | |
| 4109 | @pytest.mark.parametrize( |
| 4110 | "malicious_run_id", |