summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/system/030-run.bats5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/system/030-run.bats b/test/system/030-run.bats
index a82743c70..f7c48da8d 100644
--- a/test/system/030-run.bats
+++ b/test/system/030-run.bats
@@ -471,8 +471,11 @@ json-file | f
run buildah from $IMAGE
cid="$output"
+ # exists should fail
+ run_podman 1 container exists $cid
+
# exists should succeed
- run_podman container exists $cid
+ run_podman container exists --external $cid
run buildah rm $cid
}