summaryrefslogtreecommitdiff
path: root/test/integration/targets/dellos6_command/tests/cli/output.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/dellos6_command/tests/cli/output.yaml')
-rw-r--r--test/integration/targets/dellos6_command/tests/cli/output.yaml29
1 files changed, 0 insertions, 29 deletions
diff --git a/test/integration/targets/dellos6_command/tests/cli/output.yaml b/test/integration/targets/dellos6_command/tests/cli/output.yaml
deleted file mode 100644
index 5d0ea281de..0000000000
--- a/test/integration/targets/dellos6_command/tests/cli/output.yaml
+++ /dev/null
@@ -1,29 +0,0 @@
----
-- debug: msg="START cli/output.yaml"
-
-- name: get output for single command
- dellos6_command:
- commands: ['show version']
- provider: "{{ cli }}"
- register: result
-
-- assert:
- that:
- - "result.changed == false"
- - "result.stdout is defined"
-
-- name: get output for multiple commands
- dellos6_command:
- commands:
- - show version
- - show interfaces
- provider: "{{ cli }}"
- register: result
-
-- assert:
- that:
- - "result.changed == false"
- - "result.stdout is defined"
- - "result.stdout | length == 2"
-
-- debug: msg="END cli/output.yaml"