From 3609b82fe6f5fe268cdbe9f8aba43140c4e81f90 Mon Sep 17 00:00:00 2001 From: baude Date: Fri, 2 Feb 2018 19:05:23 -0600 Subject: Migrate diff, exec, export, and history to ginkgo Migrate the diff, exec, export, and history bats tests to the ginkgo test suite. Signed-off-by: baude Closes: #287 Approved by: baude --- test/podman_export.bats | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 test/podman_export.bats (limited to 'test/podman_export.bats') diff --git a/test/podman_export.bats b/test/podman_export.bats deleted file mode 100644 index 40fc7bb4f..000000000 --- a/test/podman_export.bats +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env bats - -load helpers - -function teardown() { - cleanup_test -} - -function setup() { - copy_images -} - -@test "podman export output flag" { - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} create $BB ls - echo "$output" - [ "$status" -eq 0 ] - ctr_id="$output" - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} export -o container.tar $ctr_id - echo "$output" - [ "$status" -eq 0 ] - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} rm $ctr_id - echo "$output" - [ "$status" -eq 0 ] - rm -f container.tar -} -- cgit v1.2.3-54-g00ecf