ansible/test/integration/targets/ios_command/tests/cli/timeout.yaml
Ganesh Nalawade 65ab37cbd3 Remove provider from ios integration test (#31037)
*  Remove provider from each task as it is not required.
*  Add `authorize: yes` whereever required
2017-09-28 15:23:52 +05:30

19 lines
361 B
YAML

---
- debug: msg="START cli/timeout.yaml"
- name: test bad condition
ios_command:
commands:
- show version
authorize: yes
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"