summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_command/tests/cli/cli_command.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/nxos_command/tests/cli/cli_command.yaml')
-rw-r--r--test/integration/targets/nxos_command/tests/cli/cli_command.yaml26
1 files changed, 0 insertions, 26 deletions
diff --git a/test/integration/targets/nxos_command/tests/cli/cli_command.yaml b/test/integration/targets/nxos_command/tests/cli/cli_command.yaml
deleted file mode 100644
index 3fd3807e13..0000000000
--- a/test/integration/targets/nxos_command/tests/cli/cli_command.yaml
+++ /dev/null
@@ -1,26 +0,0 @@
----
-- debug:
- msg: "START cli/cli_command.yaml on connection={{ ansible_connection }}"
-
-- name: get output for single command
- cli_command:
- command: show version
- register: result
-
-- assert:
- that:
- - "result.changed == false"
- - "result.stdout is defined"
-
-- name: send invalid command
- cli_command:
- command: 'show foo'
- register: result
- ignore_errors: yes
-
-- assert:
- that:
- - "result.failed == true"
- - "result.msg is defined"
-
-- debug: msg="END cli/cli_command.yaml on connection={{ ansible_connection }}"