summaryrefslogtreecommitdiff
path: root/test/integration/targets/dellos9_command/tests/cli/invalid.yaml
blob: 6e9e8e3c933ee1f39f484a990c0e39f8aa1ede15 (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
28
---
- debug: msg="START cli/invalid.yaml"

- name: run invalid command
  dellos9_command:
    commands: ['show foo']
    provider: "{{ cli }}"
  register: result
  ignore_errors: yes

- assert:
    that:
      - "result.failed"

- name: run commands that include invalid command
  dellos9_command:
    commands:
      - show version
      - show foo
    provider: "{{ cli }}"
  register: result
  ignore_errors: yes

- assert:
    that:
      - "result.failed"

- debug: msg="END cli/invalid.yaml"