Skip to content

Commit

Permalink
fix: test the verbose option
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasLaPiana committed Mar 2, 2023
1 parent fe4da8f commit 84af3c4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/ctl/cli/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,9 @@ def test_ls(self, test_config_path: str, test_cli_runner: CliRunner) -> None:
def test_ls_verbose(
self, test_config_path: str, test_cli_runner: CliRunner
) -> None:
result = test_cli_runner.invoke(cli, ["-f", test_config_path, "ls", "system"])
result = test_cli_runner.invoke(
cli, ["-f", test_config_path, "ls", "system", "--verbose"]
)
print(result.output)
assert result.exit_code == 0

Expand Down

0 comments on commit 84af3c4

Please sign in to comment.