Merge pull request #16518 from ashley-cui/noout

Fix podman --noout to suppress all output
This commit is contained in:
OpenShift Merge Robot
2022-11-15 21:57:33 +00:00
committed by GitHub
3 changed files with 16 additions and 6 deletions

View File

@@ -232,4 +232,10 @@ See 'podman version --help'" "podman version --remote"
is "$output" "Setting --log-level and --debug is not allowed"
}
# Tests --noout for commands that do not enter the engine
@test "podman --noout properly supresses output" {
run_podman --noout system connection ls
is "$output" "" "output should be empty"
}
# vim: filetype=sh