(self)
| 1437 | assert any("'script' must be 'sh' or 'ps'" in e for e in errors) |
| 1438 | |
| 1439 | def test_validate_accepts_valid(self): |
| 1440 | from specify_cli.workflows.steps.init import InitStep |
| 1441 | |
| 1442 | step = InitStep() |
| 1443 | assert step.validate({"id": "bootstrap", "script": "sh"}) == [] |
| 1444 | |
| 1445 | |
| 1446 | class TestGateStep: |