Handle line wraps in jinja_plugins test.

pull/79541/head
Matt Clay 2 years ago
parent 79dfe14adf
commit 31f95e201a

@ -10,10 +10,14 @@
- debug: - debug:
var: result var: result
- set_fact:
# NOTE: This will cram words together that were manually wrapped, which should be OK for this test.
stderr: "{{ result.stderr | replace('\n', '') }}"
- assert: - assert:
that: that:
- '"[WARNING]: Skipping filter plugin" in result.stderr' - '"[WARNING]: Skipping filter plugin" in stderr'
- '"[WARNING]: Skipping test plugin" in result.stderr' - '"[WARNING]: Skipping test plugin" in stderr'
- result.stderr|regex_findall('bad_collection_filter')|length == 3 - stderr|regex_findall('bad_collection_filter')|length == 3
- result.stderr|regex_findall('bad_collection_filter2')|length == 1 - stderr|regex_findall('bad_collection_filter2')|length == 1
- result.stderr|regex_findall('bad_collection_test')|length == 2 - stderr|regex_findall('bad_collection_test')|length == 2

Loading…
Cancel
Save