(self)
| 2448 | assert len(definition.inputs) == 2 |
| 2449 | |
| 2450 | def test_from_string_invalid(self): |
| 2451 | from specify_cli.workflows.engine import WorkflowDefinition |
| 2452 | |
| 2453 | with pytest.raises(ValueError, match="must be a mapping"): |
| 2454 | WorkflowDefinition.from_string("- just a list") |
| 2455 | |
| 2456 | def test_inputs_parsed(self, sample_workflow_yaml): |
| 2457 | from specify_cli.workflows.engine import WorkflowDefinition |
nothing calls this directly
no test coverage detected