(self)
| 1430 | assert result.output["integration_options"] == "--skills" |
| 1431 | |
| 1432 | def test_validate_rejects_bad_script(self): |
| 1433 | from specify_cli.workflows.steps.init import InitStep |
| 1434 | |
| 1435 | step = InitStep() |
| 1436 | errors = step.validate({"id": "bootstrap", "script": "bogus"}) |
| 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 |