600d6278f9
* Added fix for bug # 54400 * Adding files for RM static_routes * Added Integration tests * Revert "Added fix for bug # 54400" This reverts commitbf42db4269
. * Revert "Adding files for RM static_routes" This reverts commitdafdd92d43
. * Revert "Added Integration tests" This reverts commit129dc87682
. * Adding files for RM static_routes * Added Integration tests * Corrected lint errors * Added fix for bug # 54400 * Revert "Added fix for bug # 54400" This reverts commitbf42db4269
. * Revert "Adding files for RM static_routes" This reverts commitdafdd92d43
. * Revert "Added Integration tests" This reverts commit129dc87682
. * acl_interfaces * acl_interfaces in progress * Adding unit testcases * Addresses Paul's review comments * worked on shippable errors * indentation errors * Modified unit tests * indent issues * indent issues * eos specfic changes * making the integration tcs skip the zuul run * addressed review comments * added required:True documentaiton
16 lines
462 B
YAML
16 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) == []"
|