mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Test the extract filter without the map filter.
map + extract is the usual way to use it but map isn't available on older versions of jinja2 that we still work with. Test extract even on those versions.
This commit is contained in:
@@ -95,6 +95,13 @@
|
||||
assert:
|
||||
that: "{{_.failed}}"
|
||||
|
||||
- name: Test extract
|
||||
assert:
|
||||
that:
|
||||
- '"c" == 2 | extract(["a", "b", "c"])'
|
||||
- '"b" == 1 | extract(["a", "b", "c"])'
|
||||
- '"a" == 0 | extract(["a", "b", "c"])'
|
||||
|
||||
- name: Container lookups with extract
|
||||
assert:
|
||||
that:
|
||||
|
||||
Reference in New Issue
Block a user