diff --git a/tests/test_all_commands.py b/tests/test_all_commands.py index 0a21841..efdfda5 100644 --- a/tests/test_all_commands.py +++ b/tests/test_all_commands.py @@ -55,6 +55,11 @@ def test_completions_help(runner: CliRunner): assert result.exit_code == 0 +def test_update_help(runner: CliRunner): + result = runner.invoke(run_cli, ["update", "--help"]) + assert result.exit_code == 0 + + def test_anilist_help(runner: CliRunner): result = runner.invoke(run_cli, ["anilist", "--help"]) assert result.exit_code == 0