From ca980c2e024bd33f4be3a33bb1dbb22c86bfe072 Mon Sep 17 00:00:00 2001 From: Romain Geissler Date: Sat, 19 Feb 2022 13:57:20 +0000 Subject: Option --url and --connection should imply --remote. Closes #13242 Signed-off-by: Romain Geissler --- test/system/001-basic.bats | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'test') diff --git a/test/system/001-basic.bats b/test/system/001-basic.bats index 748377e4b..582efa058 100644 --- a/test/system/001-basic.bats +++ b/test/system/001-basic.bats @@ -126,6 +126,17 @@ See 'podman version --help'" "podman version --remote" if grep -- " --remote " <<<"$output"; then die "podman --help, with CONTAINER_CONNECTION set, is showing --remote" fi + + # When it detects --url or --connection, --remote is not an option + run_podman --url foobar --help + if grep -- " --remote " <<<"$output"; then + die "podman --help, with --url set, is showing --remote" + fi + + run_podman --connection foobar --help + if grep -- " --remote " <<<"$output"; then + die "podman --help, with --connection set, is showing --remote" + fi } # Check that just calling "podman-remote" prints the usage message even -- cgit v1.2.3-54-g00ecf