cb1b705218
* 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
20 lines
453 B
YAML
20 lines
453 B
YAML
---
|
|
- debug: msg="START cli/timeout.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: test bad condition
|
|
ios_command:
|
|
commands:
|
|
- show version
|
|
authorize: yes
|
|
wait_for:
|
|
- "result[0] contains bad_value_string"
|
|
become: yes
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
- "result.msg is defined"
|
|
|
|
- debug: msg="END cli/timeout.yaml on connection={{ ansible_connection }}"
|