mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Removing cruft leftover from the deprecation of include+with_items
Also cleaning up integration tests that had checks for the empty item attribute in certain results. Fixes #7535
This commit is contained in:
parent
2f7e720b90
commit
74f20ebf79
5 changed files with 16 additions and 26 deletions
|
@ -526,7 +526,6 @@ class Play(object):
|
|||
|
||||
if 'include' in x:
|
||||
tokens = shlex.split(str(x['include']))
|
||||
items = ['']
|
||||
included_additional_conditions = list(additional_conditions)
|
||||
include_vars = {}
|
||||
for k in x:
|
||||
|
@ -572,9 +571,7 @@ class Play(object):
|
|||
if 'role_name' in x:
|
||||
new_role = x['role_name']
|
||||
|
||||
for item in items:
|
||||
mv = task_vars.copy()
|
||||
mv['item'] = item
|
||||
for t in tokens[1:]:
|
||||
(k,v) = t.split("=", 1)
|
||||
mv[k] = template(self.basedir, v, mv)
|
||||
|
|
|
@ -63,7 +63,6 @@
|
|||
that:
|
||||
- "'invocation' in apt_result"
|
||||
- "'changed' in apt_result"
|
||||
- "'item' in apt_result"
|
||||
- "'stderr' in apt_result"
|
||||
- "'stdout' in apt_result"
|
||||
- "'stdout_lines' in apt_result"
|
||||
|
|
|
@ -35,7 +35,6 @@
|
|||
- "'end' in async_result"
|
||||
- "'finished' in async_result"
|
||||
- "'invocation' in async_result"
|
||||
- "'item' in async_result"
|
||||
- "'rc' in async_result"
|
||||
- "'start' in async_result"
|
||||
- "'stderr' in async_result"
|
||||
|
|
|
@ -191,7 +191,6 @@
|
|||
that:
|
||||
- 'result.changed'
|
||||
- 'result.group_id.startswith("sg-")'
|
||||
- 'result.item == ""'
|
||||
|
||||
# ============================================================
|
||||
- name: test state=present (expected changed=false)
|
||||
|
@ -209,7 +208,6 @@
|
|||
that:
|
||||
- 'not result.changed'
|
||||
- 'result.group_id.startswith("sg-")'
|
||||
- 'result.item == ""'
|
||||
|
||||
# ============================================================
|
||||
- name: test state=absent (expected changed=true)
|
||||
|
@ -228,7 +226,6 @@
|
|||
that:
|
||||
- 'result.changed'
|
||||
- 'not result.group_id'
|
||||
- 'result.item == ""'
|
||||
|
||||
# ============================================================
|
||||
- name: test state=absent (expected changed=false)
|
||||
|
@ -247,4 +244,3 @@
|
|||
that:
|
||||
- 'not result.changed'
|
||||
- 'not result.group_id'
|
||||
- 'result.item == ""'
|
||||
|
|
|
@ -69,7 +69,6 @@
|
|||
that:
|
||||
- "'invocation' in yum_result"
|
||||
- "'changed' in yum_result"
|
||||
- "'item' in yum_result"
|
||||
- "'msg' in yum_result"
|
||||
- "'rc' in yum_result"
|
||||
- "'results' in yum_result"
|
||||
|
|
Loading…
Add table
Reference in a new issue