a12033a6e0
* WIP * Don't set connection: network_cli in the playbook * ios_config tests now passing * Create test loopback device * delete * ios_* pass (apart from ios_facts) * Remove provider lines
18 lines
342 B
YAML
18 lines
342 B
YAML
---
|
|
- debug: msg="START cli/timeout.yaml"
|
|
|
|
- name: test bad condition
|
|
ios_command:
|
|
commands:
|
|
- show version
|
|
wait_for:
|
|
- "result[0] contains bad_value_string"
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
- "result.msg is defined"
|
|
|
|
- debug: msg="END cli/timeout.yaml"
|