ansible/test/integration/targets/ios_command/tests/cli/invalid.yaml
Nathaniel Case cb1b705218
ios integration tests to network_cli (#33920)
* Preliminary steps

* Fix Python3 network_cli ios

* Add connection to debug strings

* Fix ios confirm prompt by way of optional newline

Also update ios_user delete tests
2017-12-20 09:03:29 -05:00

30 lines
578 B
YAML

---
- debug: msg="START cli/invalid.yaml on connection={{ ansible_connection }}"
- name: run invalid command
ios_command:
commands: show foo
authorize: yes
become: yes
register: result
ignore_errors: yes
- assert:
that:
- "result.failed"
- name: run commands that include invalid command
ios_command:
commands:
- show version
- show foo
authorize: yes
become: yes
register: result
ignore_errors: yes
- assert:
that:
- "result.failed"
- debug: msg="END cli/invalid.yaml on connection={{ ansible_connection }}"