5a1b59adf9
* 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.
18 lines
344 B
YAML
18 lines
344 B
YAML
- name: Test vars_prompt unsupported key
|
|
hosts: testhost
|
|
become: no
|
|
gather_facts: no
|
|
vars_prompt:
|
|
- name: input
|
|
prompt: prompting for variable
|
|
# Unsupported key for vars_prompt
|
|
when: foo is defined
|
|
|
|
tasks:
|
|
- name:
|
|
assert:
|
|
that:
|
|
- input is not defined
|
|
|
|
- debug:
|
|
var: input
|