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