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

30 lines
576 B
YAML

---
- debug: msg="START cli/output.yaml"
- name: get output for single command
ios_command:
commands:
- show version
authorize: yes
register: result
- assert:
that:
- "result.changed == false"
- "result.stdout is defined"
- name: get output for multiple commands
ios_command:
commands:
- show version
- show interfaces
authorize: yes
register: result
- assert:
that:
- "result.changed == false"
- "result.stdout is defined"
- "result.stdout | length == 2"
- debug: msg="END cli/output.yaml"