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_feature/tests/common/invalid.yaml

16 lines
326 B
YAML

---
- debug: msg="START {{ connection.transport }}/invalid.yaml"
- name: configure invalid feature name
nxos_feature:
feature: invalid
provider: "{{ connection }}"
register: result
ignore_errors: yes
- assert:
that:
- result.failed == true
- debug: msg="END {{ connection.transport }}/invalid.yaml"