b818436c5f
Signed-off-by: NilashishC <nilashishchakraborty8@gmail.com>
14 lines
436 B
YAML
14 lines
436 B
YAML
---
|
|
- debug:
|
|
msg: "START iosxr_acls parsed integration tests on connection={{ ansible_connection }}"
|
|
|
|
- name: Parse externally provided ACL config to agnostic model
|
|
iosxr_acls:
|
|
running_config: "{{ lookup('file', './fixtures/parsed.cfg') }}"
|
|
state: parsed
|
|
register: result
|
|
|
|
- name: Assert that config was correctly parsed
|
|
assert:
|
|
that:
|
|
- "{{ parsed | symmetric_difference(result['parsed']) |length == 0 }}"
|