summaryrefslogtreecommitdiff
path: root/test/integration/targets/vars_prompt/vars_prompt-2.yml
diff options
context:
space:
mode:
authorMatt Clay <mclay@redhat.com>2020-03-19 22:05:43 -0700
committerGitHub <noreply@github.com>2020-03-19 22:05:43 -0700
commit383ef3ea80bcb269d10b4fb2be23c7146d78242d (patch)
tree6d1d312b0c83a92d8cd347f5ce0a01632eaf8a00 /test/integration/targets/vars_prompt/vars_prompt-2.yml
parent0ca3feb8616c54a445e608a5f5470cb421bcf1f0 (diff)
downloadansible-383ef3ea80bcb269d10b4fb2be23c7146d78242d.tar.gz
Rename tests (#68356)
* Rename `tests` test to match plugin type. * Rename `test_infra` test to avoid confusion. This test target is not a test for test plugins. * Rename `vars_prompt` test to avoid confusion. * Update sanity ignores.
Diffstat (limited to 'test/integration/targets/vars_prompt/vars_prompt-2.yml')
-rw-r--r--test/integration/targets/vars_prompt/vars_prompt-2.yml16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/integration/targets/vars_prompt/vars_prompt-2.yml b/test/integration/targets/vars_prompt/vars_prompt-2.yml
deleted file mode 100644
index d8f20db801..0000000000
--- a/test/integration/targets/vars_prompt/vars_prompt-2.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-- name: Test vars_prompt custom prompt
- hosts: testhost
- become: no
- gather_facts: no
-
- vars_prompt:
- - name: input
- prompt: "Enter some input"
-
- tasks:
- - assert:
- that:
- - input == 'some more input'
-
- - debug:
- var: input