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