ansible/test/integration/targets/nxos_command/tests/common/output.yaml

25 lines
511 B
YAML
Raw Normal View History

---
- debug: msg="START common/output.yaml on connection={{ ansible_connection }}"
- name: get output for single command
nxos_command:
commands: ['show version']
register: result
- assert:
that:
- "result.changed == false"
- name: get output for multiple commands
nxos_command:
commands:
- show version
- show interface
register: result
- assert:
that:
- "result.changed == false"
- debug: msg="END common/output.yaml on connection={{ ansible_connection }}"