test: add test for update command

This commit is contained in:
Benex254
2024-08-12 00:48:55 +03:00
parent b935e80928
commit a4974fbba7

View File

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