There was an error while loading. Please reload this page.
2 parents 8b84b3d + 5a2c042 commit d803c75Copy full SHA for d803c75
1 file changed
tests/gateway/test_cli_help.py
@@ -0,0 +1,17 @@
1
+from __future__ import annotations
2
+
3
+from click.testing import CliRunner
4
5
+from atelier.gateway.adapters.cli import cli
6
7
8
+def test_cli_help_shows_core_commands() -> None:
9
+ result = CliRunner().invoke(cli, ["--help"])
10
11
+ assert result.exit_code == 0, result.output
12
13
+ output = result.output
14
+ assert "init" in output
15
+ assert "context-report" in output
16
+ assert "proof" in output
17
+ assert "search-read" in output
0 commit comments