summaryrefslogtreecommitdiff
path: root/test/podman_search.bats
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-02-08 10:40:43 -0600
committerbaude <bbaude@redhat.com>2018-02-08 12:37:07 -0600
commitc089cb9c9270aa4b367deb8c8c03cb05f8860a33 (patch)
tree8d765658f757798e1578fd2fc96f1528e6af5e20 /test/podman_search.bats
parent8fdccb77648f5b772c6bae98fce4734b1a54ed4a (diff)
downloadpodman-c089cb9c9270aa4b367deb8c8c03cb05f8860a33.tar.gz
podman-c089cb9c9270aa4b367deb8c8c03cb05f8860a33.tar.bz2
podman-c089cb9c9270aa4b367deb8c8c03cb05f8860a33.zip
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 <bbaude@redhat.com>
Diffstat (limited to 'test/podman_search.bats')
-rw-r--r--test/podman_search.bats43
1 files changed, 0 insertions, 43 deletions
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