1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/integration/targets/net_command/tests/nxos/contains.yaml

20 lines
424 B
YAML
Raw Normal View History

---
- debug: msg="START nxos/contains.yaml"
- name: test contains operator
net_command:
commands:
- show version
- show interface mgmt0 | json
wait_for:
- "result[0] contains NX-OS"
- "result[1].TABLE_interface.ROW_interface.interface contains mgmt"
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- debug: msg="END nxos/contains.yaml"