ansible/test/integration/targets/nxos_config/tests/common/src_invalid.yaml
Nathaniel Case c5d0b15160
Fixes nxos_l2_interface tests (#34514)
* Update nxos tests that got missed in the first pass

* Add setup for setting interfaces to layer2
2018-01-05 17:01:45 -05:00

21 lines
610 B
YAML

---
- debug: msg="START connection={{ ansible_connection }}/src_invalid.yaml"
- debug: msg="Using provider={{ connection.transport }}"
when: ansible_connection == "local"
# 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.changed == false"
- "result.failed == true"
- "result.msg == 'path specified in src not found'"
- debug: msg="END connection={{ ansible_connection }}/src_invalid.yaml"