1 parent 33153f4 commit 789d07dCopy full SHA for 789d07d
1 file changed
src/mediathequeroubaix/cli_test.py
@@ -0,0 +1,10 @@
1
+from typer.testing import CliRunner
2
+
3
+from mediathequeroubaix.main import app
4
5
+runner = CliRunner()
6
7
8
+def test_app():
9
+ result = runner.invoke(app, ["--help"])
10
+ assert result.exit_code == 0
0 commit comments