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 34c20ea commit e39fda8Copy full SHA for e39fda8
tests/__init__.py
tests/test_cli.py
@@ -0,0 +1,8 @@
1
+from click.testing import CliRunner
2
+from gitconsensus.gitconsensus import cli
3
+
4
+def test_cli_command():
5
+ runner = CliRunner()
6
+ result = runner.invoke(cli, ["get-repository"])
7
+ assert result.exit_code == 2
8
0 commit comments