We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e90b8e commit f6e7039Copy full SHA for f6e7039
tests/cli_test.py
@@ -487,13 +487,10 @@ def test_help_with_xcmd(
487
assert (project_dir / "extension" / "cli.py").exists()
488
489
res0 = runner.invoke(cli.root, [])
490
- assert res0.exit_code == 0, res0.output
491
assert " xcmd " in res0.output, res0.output
492
493
res1 = runner.invoke(cli.root, ["xcmd"])
494
- assert res1.exit_code == 0, res1.output
495
assert " hello-ext " in res1.output, res1.output
496
497
res2 = runner.invoke(cli.root, ["xcmd", "hello-ext"])
498
- assert res2.exit_code == 0, res2.output
499
assert "FooBar!" in res2.output, res2.output
0 commit comments