summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_command/tests/cli/bad_operator.yaml
blob: 17996efe2ed3f47b30d9499a958ce89f736cbf0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
- debug: msg="START cli/bad_operator.yaml"

- name: test bad operator
  nxos_command:
    commands:
      - show version
      - show interface mgmt0 | json
    wait_for:
      - "result[1].TABLE_interface.ROW_interface.state foo up"
    provider: "{{ cli }}"
  register: result
  ignore_errors: yes

- assert:
    that:
      - "result.failed == true"
      - "result.msg is defined"

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