diff options
Diffstat (limited to 'test/podman_diff.bats')
-rw-r--r-- | test/podman_diff.bats | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/test/podman_diff.bats b/test/podman_diff.bats deleted file mode 100644 index ed1a17309..000000000 --- a/test/podman_diff.bats +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env bats - -load helpers - -function setup() { - copy_images -} - -function teardown() { - cleanup_test -} - -@test "test diff of image and parent" { - run ${PODMAN_BINARY} $PODMAN_OPTIONS diff $BB - echo "$output" - [ "$status" -eq 0 ] -} - -@test "test diff on non-existent layer" { - run ${PODMAN_BINARY} $PODMAN_OPTIONS diff "abc123" - echo "$output" - [ "$status" -ne 0 ] -} - -@test "test diff with json output" { - run ${PODMAN_BINARY} $PODMAN_OPTIONS diff --format json $BB - echo "$output" - [ "$status" -eq 0 ] -} |