diff options
author | Niall Crowe <nicrowe@redhat.com> | 2022-07-14 13:15:25 +0100 |
---|---|---|
committer | Niall Crowe <nicrowe@redhat.com> | 2022-07-14 15:47:27 +0100 |
commit | 3b5034e91a5363d979206865505688aa34900a0c (patch) | |
tree | f2041607b0347ca65b8ed910c18b6f7816f8fe47 /test/system/700-play.bats | |
parent | d4dc067117931678f0a568998ff34443a12da7e3 (diff) | |
download | podman-3b5034e91a5363d979206865505688aa34900a0c.tar.gz podman-3b5034e91a5363d979206865505688aa34900a0c.tar.bz2 podman-3b5034e91a5363d979206865505688aa34900a0c.zip |
fix tests for "podman kube play"
This is a follow up to fix some of the apiv2
tests related to "podman kube play" while also
removing reduntant system tests.
Signed-off-by: Niall Crowe <nicrowe@redhat.com>
Diffstat (limited to 'test/system/700-play.bats')
-rw-r--r-- | test/system/700-play.bats | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/test/system/700-play.bats b/test/system/700-play.bats index 53e9a5274..72602a9e6 100644 --- a/test/system/700-play.bats +++ b/test/system/700-play.bats @@ -86,21 +86,9 @@ RELABEL="system_u:object_r:container_file_t:s0" run_podman pod rm -t 0 -f test_pod } -@test "podman kube" { - TESTDIR=$PODMAN_TMPDIR/testdir - mkdir -p $TESTDIR - echo "$testYaml" | sed "s|TESTDIR|${TESTDIR}|g" > $PODMAN_TMPDIR/test.yaml - run_podman kube play $PODMAN_TMPDIR/test.yaml - if [ -e /usr/sbin/selinuxenabled -a /usr/sbin/selinuxenabled ]; then - run ls -Zd $TESTDIR - is "$output" "${RELABEL} $TESTDIR" "selinux relabel should have happened" - fi - - run_podman stop -a -t 0 - run_podman pod rm -t 0 -f test_pod -} - @test "podman play" { + # Testing that the "podman play" cmd still works now that + # "podman kube" is an option. TESTDIR=$PODMAN_TMPDIR/testdir mkdir -p $TESTDIR echo "$testYaml" | sed "s|TESTDIR|${TESTDIR}|g" > $PODMAN_TMPDIR/test.yaml |