1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-22 19:59:07 +00:00
community.general/tests/integration/targets/cnos_command/tests/cli/invalid.yaml
Ansible Core Team aebc1b03fd Initial commit
2020-03-09 09:11:07 +00:00

27 lines
471 B
YAML

---
- debug: msg="START cli/invalid.yaml"
- name: run invalid command
cnos_command:
commands: ['display foo']
register: result
ignore_errors: yes
- assert:
that:
- "result.failed"
- name: run commands that include invalid command
cnos_command:
commands:
- display version
- display foo
register: result
ignore_errors: yes
- assert:
that:
- "result.failed"
ignore_errors: true
- debug: msg="END cli/invalid.yaml"