f3337e1fba
* Fix over-byte * Update ios tests to call `provider` To continue to support testing `connection: local` * Fix command dict handling in ios_user * Clean up unit tests, too
20 lines
502 B
YAML
20 lines
502 B
YAML
---
|
|
- debug: msg="START cli/contains.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: test contains operator
|
|
ios_command:
|
|
commands:
|
|
- show version
|
|
- show interface loopback 888
|
|
provider: "{{ cli }}"
|
|
wait_for:
|
|
- "result[0] contains Cisco"
|
|
- "result[1] contains Loopback888"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
- "result.stdout is defined"
|
|
|
|
- debug: msg="END cli/contains.yaml on connection={{ ansible_connection }}"
|