summaryrefslogtreecommitdiff
path: root/test/integration/targets/enos_command/tests/cli/bad_operator.yaml
blob: e554b847d6c7c7b45efd617ec24fcd51cafb8983 (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
  enos_command:
    commands:
      - show version
      - show interface information
    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"