(self)
| 2086 | assert result.output["results"] == [{}] |
| 2087 | |
| 2088 | def test_validate_empty_wait_for(self): |
| 2089 | from specify_cli.workflows.steps.fan_in import FanInStep |
| 2090 | |
| 2091 | step = FanInStep() |
| 2092 | errors = step.validate({"id": "test", "wait_for": []}) |
| 2093 | assert any("non-empty list" in e for e in errors) |
| 2094 | |
| 2095 | def test_validate_wait_for_not_list(self): |
| 2096 | from specify_cli.workflows.steps.fan_in import FanInStep |