21 lines
444 B
YAML
21 lines
444 B
YAML
|
---
|
||
|
- debug: msg="START cli/contains.yaml"
|
||
|
|
||
|
- name: test contains operator
|
||
|
dellos9_command:
|
||
|
commands:
|
||
|
- show version
|
||
|
- show interface TenGigabitEthernet 0/0
|
||
|
wait_for:
|
||
|
- "result[0] contains 2.0"
|
||
|
- "result[1] contains TenGigabitEthernet "
|
||
|
provider: "{{ cli }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
- "result.stdout is defined"
|
||
|
|
||
|
- debug: msg="END cli/contains.yaml"
|