ansible/test/integration/targets/nxos_command/tests/common/lessthanorequal.yaml
Nathaniel Case a197125954
Nxos restore provider to nxapi tests (#41818)
* Quick and dirty sed to add provider

* Manually verify the rest of the cases

* Add missing provider
2018-07-02 09:43:51 -04:00

32 lines
783 B
YAML

---
- debug: msg="START common/lessthanorequal.yaml on connection={{ ansible_connection }}"
- name: test le operator
nxos_command:
commands:
- show version
- show interface mgmt0 | json
wait_for:
- "result[1].TABLE_interface.ROW_interface.eth_ip_mask le 32"
provider: "{{ connection }}"
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.eth_ip_mask <= 32"
provider: "{{ connection }}"
register: result
- assert:
that:
- "result.changed == false"
- debug: msg="END common/lessthanorequal.yaml on connection={{ ansible_connection }}"