From 006592ae7d0184bb228af28881b99b113e6f3400 Mon Sep 17 00:00:00 2001 From: Benex254 Date: Sun, 18 Aug 2024 15:23:27 +0300 Subject: [PATCH] test: add grab command tests --- tests/test_all_commands.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/test_all_commands.py b/tests/test_all_commands.py index efdfda5..4c4c935 100644 --- a/tests/test_all_commands.py +++ b/tests/test_all_commands.py @@ -60,6 +60,11 @@ def test_update_help(runner: CliRunner): assert result.exit_code == 0 +def test_grab_help(runner: CliRunner): + result = runner.invoke(run_cli, ["grab", "--help"]) + assert result.exit_code == 0 + + def test_anilist_help(runner: CliRunner): result = runner.invoke(run_cli, ["anilist", "--help"]) assert result.exit_code == 0