docs: clarify draft bind input behavior

This commit is contained in:
lda
2026-06-29 19:36:04 +07:00 Verified
parent ca299e6fa0
commit af7452a794
6 changed files with 26 additions and 9 deletions
+6 -4
View File
@@ -167,10 +167,12 @@ def test_wf_draft_bind_help_explains_direction() -> None:
result = runner.invoke(app, ["draft", "bind", "--help"])
assert result.exit_code == 0
output = " ".join(result.output.split())
assert "--from" in output
assert "--to" in output
assert "validate" in output
help_text = " ".join(result.output.split())
assert "--from" in help_text
assert "--to" in help_text
assert "validate" in help_text
assert "project missing schema" in help_text
assert "set-input --merge" in help_text
def test_wf_draft_add_step_help_explains_explicit_wiring() -> None: