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
23 lines
564 B
YAML
23 lines
564 B
YAML
---
|
|
- debug:
|
|
msg: "START eos_acl_interfaces gathered integration tests on connection={{ ansible_connection }}"
|
|
|
|
|
|
- include_tasks: _populate.yaml
|
|
|
|
- block:
|
|
- name: Gathered the provided configuration with the exisiting running configuration
|
|
eos_acl_interfaces: &gathered
|
|
config:
|
|
state: gathered
|
|
become: yes
|
|
register: result
|
|
|
|
- name: Assert
|
|
assert:
|
|
that:
|
|
- "gathered['config'] | symmetric_difference(result.gathered) == []"
|
|
- "result['changed'] == false"
|
|
|
|
always:
|
|
- include_tasks: _remove_config.yaml
|