ansible/test/integration/targets/nxos_feature/tests/common/invalid.yaml
David Newswanger ffe51bed96 nxos: merge nxapi/cli tests - evpn_global, evpn_vni, facts, feature (#28237)
* refactor nxos_evpn_global

* refactor nxos_evpn_vni

* refactor nxos_facts

* refactor nxos_feature
2017-08-17 13:47:14 +05:30

15 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"