(self, sample_workflow_file, project_dir)
| 2737 | """Test WorkflowEngine execution.""" |
| 2738 | |
| 2739 | def test_load_from_file(self, sample_workflow_file, project_dir): |
| 2740 | from specify_cli.workflows.engine import WorkflowEngine |
| 2741 | |
| 2742 | engine = WorkflowEngine(project_dir) |
| 2743 | definition = engine.load_workflow(str(sample_workflow_file)) |
| 2744 | assert definition.id == "test-workflow" |
| 2745 | |
| 2746 | def test_load_from_installed_id(self, sample_workflow_file, project_dir): |
| 2747 | from specify_cli.workflows.engine import WorkflowEngine |
nothing calls this directly
no test coverage detected