From e101f4807a92c2cf705bf8b356ff015f0c198f05 Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Tue, 24 Aug 2021 10:27:45 -0400 Subject: [PATCH] test: Added header and sort tests --- tests/test_status.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/test_status.py b/tests/test_status.py index e2a82f2..2c7bdfa 100644 --- a/tests/test_status.py +++ b/tests/test_status.py @@ -22,6 +22,16 @@ def test_uuid(): assert response.exit_code == 0 +def test_sort(): + response = runner.invoke(task_main, ["--sort"]) + assert response.exit_code == 0 + + +def test_header(): + response = runner.invoke(task_main, ["--header"]) + assert response.exit_code == 0 + + def test_help(): response = runner.invoke(task_main, ["--help"]) assert response.exit_code == 0