17 lines
462 B
YAML
17 lines
462 B
YAML
|
---
|
||
|
- debug:
|
||
|
msg: "START eos_acl_interfaces parsed integration tests on connection={{ ansible_connection }}"
|
||
|
|
||
|
- name: Provide the running configuration for parsing (config to be parsed)
|
||
|
eos_acl_interfaces: &parsed
|
||
|
running_config:
|
||
|
"{{ lookup('file', '_parsed.cfg') }}"
|
||
|
state: parsed
|
||
|
become: yes
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
- "parsed['config']|symmetric_difference(result.parsed) == []"
|