2016-10-28 18:50:29 +00:00
|
|
|
---
|
|
|
|
- debug: msg="START cli/invalid.yaml"
|
|
|
|
|
|
|
|
- name: run invalid command
|
|
|
|
ios_command:
|
2017-01-20 20:18:12 +00:00
|
|
|
commands: show foo
|
2017-09-28 09:53:52 +00:00
|
|
|
authorize: yes
|
2016-10-28 18:50:29 +00:00
|
|
|
register: result
|
|
|
|
ignore_errors: yes
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.failed"
|
|
|
|
|
|
|
|
- name: run commands that include invalid command
|
|
|
|
ios_command:
|
|
|
|
commands:
|
|
|
|
- show version
|
|
|
|
- show foo
|
2017-09-28 09:53:52 +00:00
|
|
|
authorize: yes
|
2016-10-28 18:50:29 +00:00
|
|
|
register: result
|
|
|
|
ignore_errors: yes
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.failed"
|
|
|
|
|
|
|
|
- debug: msg="END cli/invalid.yaml"
|