We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7f8108 commit de354f1Copy full SHA for de354f1
tests/unit/ctl/test_cli.py
@@ -70,14 +70,14 @@ def test_info_command_failure():
70
def test_info_detail_command_success(httpx_mock: HTTPXMock):
71
mock_common_responses(httpx_mock)
72
result = runner.invoke(app, ["info", "--detail"])
73
+ print(result.stdout)
74
assert result.exit_code == 0
75
for expected in [
76
"Connection Status",
77
"Version Information",
78
"Client Info",
79
"Infrahub Info",
80
"Groups:",
- "Super Administrators",
81
]:
82
assert expected in result.stdout, f"'{expected}' not found in detailed info command output"
83
0 commit comments