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.
16 lines
266 B
YAML
16 lines
266 B
YAML
- name: Test vars_prompt not private
|
|
hosts: testhost
|
|
become: no
|
|
gather_facts: no
|
|
|
|
vars_prompt:
|
|
- name: not_secret
|
|
private: no
|
|
|
|
tasks:
|
|
- assert:
|
|
that:
|
|
- not_secret == 'this is displayed'
|
|
|
|
- debug:
|
|
var: not_secret
|