ansible/test/integration/targets/nxos_command/tests/common/output.yaml
Nathaniel Case a197125954
Nxos restore provider to nxapi tests (#41818)
* Quick and dirty sed to add provider

* Manually verify the rest of the cases

* Add missing provider
2018-07-02 09:43:51 -04:00

26 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 }}"