ansible/test/integration/targets/ops_command/tests/cli/output.yaml
2017-01-03 10:53:16 -05:00

29 lines
585 B
YAML

---
- debug: msg="START cli/output.yaml"
- name: get output for single command
ops_command:
commands: ['show version']
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- "result.stdout is defined"
- name: get output for multiple commands
ops_command:
commands:
- show version
- show interface
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- "result.stdout is defined"
- "result.stdout | length == 2"
- debug: msg="END cli/output.yaml"