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

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

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