mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
16 lines
279 B
YAML
16 lines
279 B
YAML
|
---
|
||
|
- debug: msg="START nxapi/invalid.yaml"
|
||
|
|
||
|
- name: configure invalid feature name
|
||
|
nxos_feature:
|
||
|
feature: invalid
|
||
|
provider: "{{ nxapi }}"
|
||
|
register: result
|
||
|
ignore_errors: yes
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- result.failed == true
|
||
|
|
||
|
- debug: msg="END nxapi/invalid.yaml"
|