You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/jinja_plugins/tasks/main.yml

23 lines
684 B
YAML

- shell: ansible-playbook {{ verbosity }} playbook.yml
args:
chdir: '{{ role_path }}'
vars:
verbosity: "{{ '' if not ansible_verbosity else '-' ~ ('v' * ansible_verbosity) }}"
register: result
- debug:
var: result
- assert:
that:
- '"[WARNING]: Skipping filter plugin" in result.stderr'
- '"[WARNING]: Skipping test plugin" in result.stderr'
- |
result.stderr|regex_findall('bad_filter')|length == 2
- |
result.stderr|regex_findall('bad_test')|length == 2
- |
result.stderr|regex_findall('bad_collection_filter')|length == 2
- |
result.stderr|regex_findall('bad_collection_test')|length == 2