(self)
| 769 | assert result.output["exit_code"] == 0 |
| 770 | |
| 771 | def test_validate_missing_command(self): |
| 772 | from specify_cli.workflows.steps.command import CommandStep |
| 773 | |
| 774 | step = CommandStep() |
| 775 | errors = step.validate({"id": "test"}) |
| 776 | assert any("missing 'command'" in e for e in errors) |
| 777 | |
| 778 | def test_step_override_integration(self): |
| 779 | from unittest.mock import patch |
nothing calls this directly
no test coverage detected