diff options
Diffstat (limited to 'test/kpod_create.bats')
-rw-r--r-- | test/kpod_create.bats | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/kpod_create.bats b/test/kpod_create.bats index 5605b5fe0..7346834c7 100644 --- a/test/kpod_create.bats +++ b/test/kpod_create.bats @@ -7,18 +7,17 @@ function setup() { } function teardown() { + run bash -c "${KPOD_BINARY} ${KPOD_OPTIONS} rm -f `${KPOD_BINARY} ${KPOD_OPTIONS} ps -a -q`" cleanup_test } @test "create a container based on local image" { - skip "Reenable after kpod rm merges, and use rm to clean up" run ${KPOD_BINARY} ${KPOD_OPTIONS} create $BB ls echo "$output" [ "$status" -eq 0 ] } @test "create a container based on a remote image" { - skip "Reenable after kpod rm merges, and use rm to clean up" run ${KPOD_BINARY} ${KPOD_OPTIONS} create ${BB_GLIBC} ls echo "$output" [ "$status" -eq 0 ] |