mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
30 lines
523 B
YAML
30 lines
523 B
YAML
|
---
|
||
|
- debug: msg="START cli/invalid.yaml"
|
||
|
|
||
|
- name: run invalid command
|
||
|
cnos_command:
|
||
|
commands: ['display foo']
|
||
|
provider: "{{ cli }}"
|
||
|
register: result
|
||
|
ignore_errors: yes
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.failed"
|
||
|
|
||
|
- name: run commands that include invalid command
|
||
|
cnos_command:
|
||
|
commands:
|
||
|
- display version
|
||
|
- display foo
|
||
|
provider: "{{ cli }}"
|
||
|
register: result
|
||
|
ignore_errors: yes
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.failed"
|
||
|
ignore_errors: true
|
||
|
|
||
|
- debug: msg="END cli/invalid.yaml"
|