mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
2f46f8f944
* Support for network_cli plugin and tests * Fixed ansible-test * issues * Fixed Pylint warning * Fixed the sanity test errors * Fix YAMLlinter issue - removed blank spaces * Fixed Python 3 failures * Fixed the PEP8 issue * Fix sanity --test validate-modules * Reverted the changes to the doc fragments
19 lines
373 B
YAML
Executable file
19 lines
373 B
YAML
Executable file
---
|
|
- debug: msg="START cli/timeout.yaml"
|
|
|
|
- name: test bad condition
|
|
dellos10_command:
|
|
commands:
|
|
- show version
|
|
wait_for:
|
|
- "result[0] contains bad_value_string"
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
- "result.msg is defined"
|
|
|
|
- debug: msg="END cli/timeout.yaml"
|