From c089cb9c9270aa4b367deb8c8c03cb05f8860a33 Mon Sep 17 00:00:00 2001 From: baude Date: Thu, 8 Feb 2018 10:40:43 -0600 Subject: Final ginkgo migration Completion of the migration from bats to ginkgo. This includes: * load * mount * pause * port * run_networking * search Note: build will be done within a different PR Signed-off-by: baude --- test/podman_search.bats | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 test/podman_search.bats (limited to 'test/podman_search.bats') diff --git a/test/podman_search.bats b/test/podman_search.bats deleted file mode 100644 index 07621d722..000000000 --- a/test/podman_search.bats +++ /dev/null @@ -1,43 +0,0 @@ -#!/usr/bin/env bats - -load helpers - -function teardown() { - cleanup_test -} - -@test "podman search" { - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} search alpine - echo "$output" - [ "$status" -eq 0 ] -} - -@test "podman search registry flag" { - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} search --registry registry.fedoraproject.org fedora - echo "$output" - [ "$status" -eq 0 ] -} - -@test "podman search filter flag" { - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} search --filter=is-official alpine - echo "$output" - [ "$status" -eq 0 ] -} - -@test "podman search format flag" { - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} search --format "table {{.Index}} {{.Name}}" alpine - echo "$output" - [ "$status" -eq 0 ] -} - -@test "podman search no-trunc flag" { - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} search --no-trunc alpine - echo "$output" - [ "$status" -eq 0 ] -} - -@test "podman search limit flag" { - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} search --limit 3 alpine - echo "$output" - [ "$status" -eq 0 ] -} \ No newline at end of file -- cgit v1.2.3-54-g00ecf