ansible/test/integration/targets/nxos_command/tests/common/timeout.yaml
Nathaniel Case a197125954
Nxos restore provider to nxapi tests (#41818)
* Quick and dirty sed to add provider

* Manually verify the rest of the cases

* Add missing provider
2018-07-02 09:43:51 -04:00

19 lines
460 B
YAML

---
- debug: msg="START common/timeout.yaml on connection={{ ansible_connection }}"
- name: test bad condition
nxos_command:
commands:
- show version
wait_for:
- "result[0] contains bad_value_string"
provider: "{{ connection }}"
register: result
ignore_errors: yes
- assert:
that:
- "result.failed == true"
- "result.msg is defined"
- debug: msg="END common/timeout.yaml on connection={{ ansible_connection }}"