summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_command/tests/cli/negative.yaml
blob: 2d3745774525454969d9808414f557b9c2e0440f (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/negative.yaml"

- name: run 11 commands
  nxos_command:
    commands:
      - show version
      - show version
      - show version
      - show version
      - show version
      - show version
      - show version
      - show version
      - show version
      - show version
      - show version
    provier: "{{ cli }}"
  ignore_errors: yes
  register: result

- assert:
    that:
      - result.failed


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