diff --git a/tests/test_status.py b/tests/test_status.py index 4784e45..e2a82f2 100644 --- a/tests/test_status.py +++ b/tests/test_status.py @@ -20,3 +20,8 @@ def test_version(): def test_uuid(): response = runner.invoke(task_main, ["--uuid"]) assert response.exit_code == 0 + + +def test_help(): + response = runner.invoke(task_main, ["--help"]) + assert response.exit_code == 0