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/nxapi/contains.yaml

21 lines
468 B
YAML

---
- debug: msg="START nxapi/contains.yaml"
- name: test contains operator
nxos_command:
commands:
- show version
- show interface mgmt0
wait_for:
- "result[0].header_str contains NX-OS"
- "result[1].TABLE_interface.ROW_interface.interface contains mgmt"
provider: "{{ nxapi }}"
register: result
- assert:
that:
- "result.changed == false"
- "result.stdout is defined"
- debug: msg="END nxapi/contains.yaml"