mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
20 lines
350 B
YAML
20 lines
350 B
YAML
|
---
|
||
|
- debug: msg="START eapi/timeout.yaml"
|
||
|
|
||
|
- name: test bad condition
|
||
|
eos_command:
|
||
|
commands:
|
||
|
- show version
|
||
|
wait_for:
|
||
|
- "result[0].version foo 4.15"
|
||
|
retries: 1
|
||
|
register: result
|
||
|
ignore_errors: yes
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.failed == true"
|
||
|
- "result.msg is defined"
|
||
|
|
||
|
- debug: msg="END eapi/timeout.yaml"
|