mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
reformated test, changed big assert to with_items
much easier to see the individual condition that causes the failure when using with_items and evaluating each part of the assert individually
This commit is contained in:
parent
a1e8050760
commit
c03afccc05
1 changed files with 34 additions and 32 deletions
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
- hosts: testhost
|
||||
vars:
|
||||
- ansible_hostname: "BAD!"
|
||||
- vars_var: "vars_var"
|
||||
- param_var: "BAD!"
|
||||
- vars_files_var: "BAD!"
|
||||
|
@ -24,7 +25,8 @@
|
|||
- debug: var=registered_var
|
||||
- debug: var=from_inventory_once_removed
|
||||
- assert:
|
||||
that:
|
||||
that: item
|
||||
with_items:
|
||||
- 'extra_var == "extra_var"'
|
||||
- 'extra_var_override == "extra_var_override"'
|
||||
- 'extra_var_override_once_removed == "extra_var_override"'
|
||||
|
|
Loading…
Reference in a new issue