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.
15 lines
220 B
YAML
15 lines
220 B
YAML
- name: Basic vars_prompt test
|
|
hosts: testhost
|
|
become: no
|
|
gather_facts: no
|
|
|
|
vars_prompt:
|
|
- name: input
|
|
|
|
tasks:
|
|
- assert:
|
|
that:
|
|
- input == 'some input'
|
|
|
|
- debug:
|
|
var: input
|