(self, sample_workflow_file, project_dir)
| 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 |
| 2748 | |
| 2749 | engine = WorkflowEngine(project_dir) |
| 2750 | definition = engine.load_workflow("test-workflow") |
| 2751 | assert definition.id == "test-workflow" |
| 2752 | |
| 2753 | def test_load_not_found(self, project_dir): |
| 2754 | from specify_cli.workflows.engine import WorkflowEngine |
nothing calls this directly
no test coverage detected