ffe51bed96
* refactor nxos_evpn_global * refactor nxos_evpn_vni * refactor nxos_facts * refactor nxos_feature
15 lines
326 B
YAML
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"
|