summaryrefslogtreecommitdiff
path: root/test/kpod_create.bats
diff options
context:
space:
mode:
Diffstat (limited to 'test/kpod_create.bats')
-rw-r--r--test/kpod_create.bats24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/kpod_create.bats b/test/kpod_create.bats
new file mode 100644
index 000000000..46a460ecd
--- /dev/null
+++ b/test/kpod_create.bats
@@ -0,0 +1,24 @@
+#!/usr/bin/env bats
+
+load helpers
+
+function teardown() {
+ cleanup_test
+}
+
+ALPINE="docker.io/library/alpine:latest"
+
+@test "create a container based on local image" {
+ run ${KPOD_BINARY} ${KPOD_OPTIONS} pull docker.io/library/busybox:latest
+ echo "$output"
+ [ "$status" -eq 0 ]
+ run ${KPOD_BINARY} ${KPOD_OPTIONS} create docker.io/library/busybox:latest ls
+ echo "$output"
+ [ "$status" -eq 0 ]
+}
+
+@test "create a container based on a remote image" {
+ run ${KPOD_BINARY} ${KPOD_OPTIONS} create ${ALPINE} ls
+ echo "$output"
+ [ "$status" -eq 0 ]
+}