ansible/test/integration/targets/ios_command/tests/cli/invalid.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

28 lines
472 B
YAML

---
- debug: msg="START cli/invalid.yaml"
- name: run invalid command
ios_command:
commands: show foo
authorize: yes
register: result
ignore_errors: yes
- assert:
that:
- "result.failed"
- name: run commands that include invalid command
ios_command:
commands:
- show version
- show foo
authorize: yes
register: result
ignore_errors: yes
- assert:
that:
- "result.failed"
- debug: msg="END cli/invalid.yaml"