You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/nxos_command/tests/common/output.yaml

27 lines
577 B
YAML

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