summaryrefslogtreecommitdiff
path: root/test/integration/targets/iosxr_command/tests/cli/output.yaml
blob: 3057d58c4983e05c1079e9a5d386a7544996cd23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
- debug: msg="START cli/output.yaml on connection={{ ansible_connection }}"

- name: get output for single command
  iosxr_command:
    commands: ['show version']
  register: result

- assert:
    that:
      - "result.changed == false"
      - "result.stdout is defined"

- name: get output for multiple commands
  iosxr_command:
    commands:
      - show version
      - show interfaces
  register: result

- assert:
    that:
      - "result.changed == false"
      - "result.stdout is defined"
      - "result.stdout | length == 2"

- debug: msg="END cli/output.yaml on connection={{ ansible_connection }}"