ansible/test/integration/targets/exos_command/tests/common/single.yaml

15 lines
357 B
YAML
Raw Normal View History

---
- debug: msg="START common/single.yaml on connection={{ ansible_connection }}"
- name: run show version on remote devices
exos_command:
commands: show version
register: result
- assert:
that:
- "result.changed == false"
- "result.stdout is defined"
- debug: msg="END common/single.yaml on connection={{ ansible_connection }}"