diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-10-20 07:25:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-20 07:25:35 -0400 |
commit | f9450300b73e18890f7264bffca35b291aa3176e (patch) | |
tree | 1764522482b97b6fdf86c21e5d2505aa6e49b89c /test/system/030-run.bats | |
parent | e944544271d9e515bdfc7e364e3ddf372b0dd378 (diff) | |
parent | b23d430516a20f0274c200c2d67bf0e1b05bff18 (diff) | |
download | podman-f9450300b73e18890f7264bffca35b291aa3176e.tar.gz podman-f9450300b73e18890f7264bffca35b291aa3176e.tar.bz2 podman-f9450300b73e18890f7264bffca35b291aa3176e.zip |
Merge pull request #8061 from edsantiago/bats
System tests: remove some misleading 'run's
Diffstat (limited to 'test/system/030-run.bats')
-rw-r--r-- | test/system/030-run.bats | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/test/system/030-run.bats b/test/system/030-run.bats index f7c48da8d..28dc7c7a7 100644 --- a/test/system/030-run.bats +++ b/test/system/030-run.bats @@ -460,24 +460,4 @@ json-file | f is "$output" "$expect" "podman run with --tz=local, matches host" } -@test "podman container exists" { - rand=$(random_string 30) - run_podman 1 container exists myctr - - run_podman create --name myctr $IMAGE /bin/true - run_podman container exists myctr - - # Create a container that podman does not know about - run buildah from $IMAGE - cid="$output" - - # exists should fail - run_podman 1 container exists $cid - - # exists should succeed - run_podman container exists --external $cid - - run buildah rm $cid -} - # vim: filetype=sh |