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/nxos_config/tests/common/src_invalid.yaml

19 lines
501 B
YAML

---
- debug: msg="START common/src_invalid.yaml on connection={{ ansible_connection }}"
# Defend https://github.com/ansible/ansible-modules-core/issues/4797
- name: configure with invalid src
nxos_config:
src: basic/foobar.j2
provider: "{{ connection }}"
register: result
ignore_errors: yes
- assert:
that:
- "result.failed == true"
- "result.msg == 'path specified in src not found'"
- debug: msg="END common/src_invalid.yaml on connection={{ ansible_connection }}"