(self, project_dir)
| 4234 | """Test listing workflow runs.""" |
| 4235 | |
| 4236 | def test_list_empty(self, project_dir): |
| 4237 | from specify_cli.workflows.engine import WorkflowEngine |
| 4238 | |
| 4239 | engine = WorkflowEngine(project_dir) |
| 4240 | assert engine.list_runs() == [] |
| 4241 | |
| 4242 | def test_list_after_execution(self, project_dir): |
| 4243 | from specify_cli.workflows.engine import WorkflowEngine, WorkflowDefinition |
nothing calls this directly
no test coverage detected