2016-10-28 18:50:29 +00:00
|
|
|
---
|
2017-12-20 14:03:29 +00:00
|
|
|
- debug: msg="START cli/invalid.yaml on connection={{ ansible_connection }}"
|
2016-10-28 18:50:29 +00:00
|
|
|
|
|
|
|
- name: run invalid command
|
|
|
|
ios_command:
|
2017-01-20 20:18:12 +00:00
|
|
|
commands: show foo
|
2018-02-02 14:50:15 +00:00
|
|
|
provider: "{{ cli }}"
|
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
|
2018-02-02 14:50:15 +00:00
|
|
|
provider: "{{ cli }}"
|
2016-10-28 18:50:29 +00:00
|
|
|
register: result
|
|
|
|
ignore_errors: yes
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.failed"
|
|
|
|
|
2017-12-20 14:03:29 +00:00
|
|
|
- debug: msg="END cli/invalid.yaml on connection={{ ansible_connection }}"
|