summaryrefslogtreecommitdiff
path: root/test/podman_search.bats
diff options
context:
space:
mode:
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