ansible/test/integration/targets/nxos_smoke/tests/common/misc_tests.yaml
David Newswanger 58bafcb01c added nxos_smoke tests (#36647) (#37252)
* added nxos_smoke tests

* add connection information, check length of output

* updated name of task

(cherry picked from commit 5e827f4cc4)
2018-04-05 18:12:23 +01:00

24 lines
595 B
YAML

---
- debug: msg="START connection={{ ansible_connection }} common/misc_tests.yaml"
- debug: msg="Using provider={{ connection.transport }}"
when: ansible_connection == "local"
- name: hit conditional for lists of 10 or more commands
nxos_command:
commands:
- show hostname
- show hostname
- show hostname
- show hostname
- show hostname
- show hostname
- show hostname
- show hostname
- show hostname
- show hostname
provider: "{{ connection }}"
register: result
- assert:
that:
- result.stdout|length == 10