summaryrefslogtreecommitdiff
path: root/test/integration/targets/dellos9_command/tests/cli/bad_operator.yaml
blob: 0ec627f55bcbe3222832569fd76cfa3fa817e697 (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
  dellos9_command:
    commands:
      - show version
      - show interfaces TenGigabitEthernet 0/0
    wait_for:
      - "result[0] contains 'Description : blah'"
    provider: "{{ cli }}"
  register: result
  ignore_errors: yes

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

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