summaryrefslogtreecommitdiffstats
path: root/tests/roles/cli/tasks/config.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/roles/cli/tasks/config.yaml')
-rw-r--r--tests/roles/cli/tasks/config.yaml16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/roles/cli/tasks/config.yaml b/tests/roles/cli/tasks/config.yaml
deleted file mode 100644
index 91e8bc3..0000000
--- a/tests/roles/cli/tasks/config.yaml
+++ /dev/null
@@ -1,16 +0,0 @@
----
-- name: buildah config workingdir
- command: buildah config --workingdir /opt nginxc
-
-- name: get buildah config workingdir
- command: buildah run nginxc "pwd"
- register: checkworkingdir
- failed_when: "'/opt' not in checkworkingdir.stdout"
-
-- name: buildah config env
- command: buildah config --env foo=bar nginxc
-
-- name: get buildah config env
- command: buildah run nginxc env
- register: env
- failed_when: "'foo=bar' not in env.stdout"