summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_command/tests/nxapi/negative.yaml
blob: 3763f958e6f8f8ce4722b3a6eecf27a6f9314a54 (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 nxapi/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: "{{ nxapi }}"
  ignore_errors: yes
  register: result

- assert:
    that:
      - result.failed


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