summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_command/tests/common/bad_operator.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/nxos_command/tests/common/bad_operator.yaml')
-rw-r--r--test/integration/targets/nxos_command/tests/common/bad_operator.yaml19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/integration/targets/nxos_command/tests/common/bad_operator.yaml b/test/integration/targets/nxos_command/tests/common/bad_operator.yaml
deleted file mode 100644
index 6a3659093f..0000000000
--- a/test/integration/targets/nxos_command/tests/common/bad_operator.yaml
+++ /dev/null
@@ -1,19 +0,0 @@
----
-- debug: msg="START common/bad_operator.yaml on connection={{ ansible_connection }}"
-
-- name: test bad operator
- nxos_command:
- commands:
- - show version
- - show interface mgmt0 | json
- wait_for:
- - "result[1].TABLE_interface.ROW_interface.state foo up"
- register: result
- ignore_errors: yes
-
-- assert:
- that:
- - "result.failed == true"
- - "result.msg is defined"
-
-- debug: msg="END common/bad_operator.yaml on connection={{ ansible_connection }}"