mirror of
https://github.com/zebrajr/ansible.git
synced 2025-12-06 00:19:48 +01:00
Handle line wraps in jinja_plugins test.
This commit is contained in:
parent
79dfe14adf
commit
31f95e201a
|
|
@ -10,10 +10,14 @@
|
|||
- debug:
|
||||
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:
|
||||
that:
|
||||
- '"[WARNING]: Skipping filter plugin" in result.stderr'
|
||||
- '"[WARNING]: Skipping test plugin" in result.stderr'
|
||||
- result.stderr|regex_findall('bad_collection_filter')|length == 3
|
||||
- result.stderr|regex_findall('bad_collection_filter2')|length == 1
|
||||
- result.stderr|regex_findall('bad_collection_test')|length == 2
|
||||
- '"[WARNING]: Skipping filter plugin" in stderr'
|
||||
- '"[WARNING]: Skipping test plugin" in stderr'
|
||||
- stderr|regex_findall('bad_collection_filter')|length == 3
|
||||
- stderr|regex_findall('bad_collection_filter2')|length == 1
|
||||
- stderr|regex_findall('bad_collection_test')|length == 2
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user