summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_command/tests/cli/greaterthan.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/nxos_command/tests/cli/greaterthan.yaml')
-rw-r--r--test/integration/targets/nxos_command/tests/cli/greaterthan.yaml32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/integration/targets/nxos_command/tests/cli/greaterthan.yaml b/test/integration/targets/nxos_command/tests/cli/greaterthan.yaml
new file mode 100644
index 0000000000..9ba3635fb3
--- /dev/null
+++ b/test/integration/targets/nxos_command/tests/cli/greaterthan.yaml
@@ -0,0 +1,32 @@
+---
+- debug: msg="START cli/greaterthan.yaml"
+
+- name: test gt operator
+ nxos_command:
+ commands:
+ - show version
+ - show interface mgmt0 | json
+ wait_for:
+ - "result[1].TABLE_interface.ROW_interface.eth_ip_mask gt 0"
+ 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 > 0"
+ provider: "{{ cli }}"
+ register: result
+
+- assert:
+ that:
+ - "result.changed == false"
+
+- debug: msg="END cli/greaterthan.yaml"