From 28db7f21abe377b825292617c8bc8ff9781558d1 Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Wed, 18 Aug 2021 20:07:04 -0400 Subject: [PATCH] test: added a useless --help test to verify commit message hook is working --- tests/test_status.py | 5 +++++ 1 file changed, 5 insertions(+) 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