ansible/test/integration/targets/nxos_command/tests/common/equal.yaml

31 lines
685 B
YAML
Raw Normal View History

---
- debug: msg="START common/equal.yaml on connection={{ ansible_connection }}"
- name: test eq operator
nxos_command:
commands:
- show version
- show interface mgmt0 | json
wait_for:
- "result[1].TABLE_interface.ROW_interface.state eq up"
register: result
- assert:
that:
- "result.changed == false"
- name: test == operator
nxos_command:
commands:
- show version
- show interface mgmt0 | json
wait_for:
- "result[1].TABLE_interface.ROW_interface.state == up"
register: result
- assert:
that:
- "result.changed == false"
- debug: msg="END common/equal.yaml on connection={{ ansible_connection }}"