summaryrefslogtreecommitdiff
path: root/test/integration/targets/asa_command/tests/cli/invalid.yaml
blob: 67730968d4f8f0a7e2b75a66cd3b317e62b83dea (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
29
30
---
- debug: msg="START cli/invalid.yaml"

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

- assert:
    that:
      - "result.failed"

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

- assert:
    that:
      - "result.failed"
# FIXME bug https://github.com/ansible/ansible-modules-extras/issues/3048
  ignore_errors: true

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