Commit fe5a7bca by James Cammarata

Fixing bad variable naming choices

parent 2eda9a3a
......@@ -269,8 +269,8 @@
- name: test a with_items loop using a variable with a missing attribute
debug: var=item
with_items: foo.results
when: foo is defined and 'results' in foo
with_items: cond_bad_attribute.results
when: cond_bad_attribute is defined and 'results' in cond_bad_attribute
register: result
- name: assert the task was skipped
......@@ -281,7 +281,7 @@
- name: test a with_items loop skipping a single item
debug: var=item
with_items: items.results
with_items: cond_list_of_items.results
when: item != 'b'
register: result
......
......@@ -2,10 +2,10 @@
# foo is a dictionary that will be used to check that
# a conditional passes a with_items loop on a variable
# with a missing attribute (ie. foo.results)
foo:
cond_bad_attribute:
bar: a
items:
cond_list_of_items:
results:
- a
- b
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment