aboutsummaryrefslogtreecommitdiff
path: root/test/podman_tag.bats
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-02-06 13:34:44 -0600
committerbaude <bbaude@redhat.com>2018-02-07 14:55:20 -0600
commitd26023e4a86045bdb86505992acd2b03a87a6875 (patch)
treeadc81fd84bac75e419aefb621e6e540451b6fee1 /test/podman_tag.bats
parent31c56e2b9ca029b7dbab15d19ad38008e2d3776c (diff)
downloadpodman-d26023e4a86045bdb86505992acd2b03a87a6875.tar.gz
podman-d26023e4a86045bdb86505992acd2b03a87a6875.tar.bz2
podman-d26023e4a86045bdb86505992acd2b03a87a6875.zip
More ginkgo migration
* attach * run_exit * save * tag * version * run_privileged -> privileged Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'test/podman_tag.bats')
-rw-r--r--test/podman_tag.bats43
1 files changed, 0 insertions, 43 deletions
diff --git a/test/podman_tag.bats b/test/podman_tag.bats
deleted file mode 100644
index 749c3ae2c..000000000
--- a/test/podman_tag.bats
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/usr/bin/env bats
-
-load helpers
-
-function teardown() {
- cleanup_test
-}
-
-function setup() {
- copy_images
-}
-
-@test "podman tag with shortname:latest" {
- run ${PODMAN_BINARY} ${PODMAN_OPTIONS} tag ${ALPINE} foobar:latest
- [ "$status" -eq 0 ]
- run ${PODMAN_BINARY} ${PODMAN_OPTIONS} inspect foobar:latest
- echo "$output"
- [ "$status" -eq 0 ]
- run ${PODMAN_BINARY} ${PODMAN_OPTIONS} rmi --force foobar:latest
- [ "$status" -eq 0 ]
-}
-
-@test "podman tag with shortname" {
- run ${PODMAN_BINARY} ${PODMAN_OPTIONS} tag ${ALPINE} foobar
- echo "$output"
- [ "$status" -eq 0 ]
- run ${PODMAN_BINARY} ${PODMAN_OPTIONS} inspect foobar:latest
- echo "$output"
- [ "$status" -eq 0 ]
- run ${PODMAN_BINARY} ${PODMAN_OPTIONS} rmi --force foobar:latest
- [ "$status" -eq 0 ]
-}
-
-@test "podman tag with shortname:tag" {
- run ${PODMAN_BINARY} ${PODMAN_OPTIONS} tag ${ALPINE} foobar:v
- echo "$output"
- [ "$status" -eq 0 ]
- run ${PODMAN_BINARY} ${PODMAN_OPTIONS} inspect foobar:v
- echo "$output"
- [ "$status" -eq 0 ]
- run ${PODMAN_BINARY} ${PODMAN_OPTIONS} rmi --force foobar:v
- [ "$status" -eq 0 ]
-}