summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_command/tests/cli/lessthanorequal.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/nxos_command/tests/cli/lessthanorequal.yaml')
-rw-r--r--test/integration/targets/nxos_command/tests/cli/lessthanorequal.yaml32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/integration/targets/nxos_command/tests/cli/lessthanorequal.yaml b/test/integration/targets/nxos_command/tests/cli/lessthanorequal.yaml
new file mode 100644
index 0000000000..2576fc11bd
--- /dev/null
+++ b/test/integration/targets/nxos_command/tests/cli/lessthanorequal.yaml
@@ -0,0 +1,32 @@
+---
+- debug: msg="START cli/lesstahnorequal.yaml"
+
+- 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: "{{ cli }}"
+ 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: "{{ cli }}"
+ register: result
+
+- assert:
+ that:
+ - "result.changed == false"
+
+- debug: msg="END cli/lesstahnorequal.yaml"