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 8d77990 commit dd2e348Copy full SHA for dd2e348
tests/test_cli.py
@@ -0,0 +1,10 @@
1
+import subprocess, sys, json
2
+
3
+def test_cli_smoke():
4
+ result = subprocess.run(
5
+ [sys.executable, "-m", "tfsumpy", "--help"],
6
+ capture_output=True,
7
+ text=True,
8
+ check=True,
9
+ )
10
+ assert "usage" in result.stdout.lower()
0 commit comments