test: added a useless --help test to verify commit message hook is working

This commit is contained in:
Alex Kelly 2021-08-18 20:07:04 -04:00
parent 39caf5ec42
commit 28db7f21ab

View file

@ -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