af3603f9ee
While this does properly pass our testing for ansible/ansible devel
branch, it is currently breaking our collection testing for 2.10.
Specifically, this would mean ansible.netcommon would need to directly
import arista.eos or cisco.nxos collections, causing a circular dependency.
This reverts commit e266e5f8b6
.
25 lines
453 B
YAML
25 lines
453 B
YAML
---
|
|
- name: Reset initial config
|
|
cli_config:
|
|
config: |
|
|
no vlan 1-4094
|
|
vlan 10
|
|
name ten
|
|
vlan 20
|
|
name twenty
|
|
become: yes
|
|
|
|
- eos_facts:
|
|
gather_network_resources: vlans
|
|
become: yes
|
|
|
|
- set_fact:
|
|
expected_config:
|
|
- vlan_id: 10
|
|
name: ten
|
|
- vlan_id: 20
|
|
name: twenty
|
|
|
|
- assert:
|
|
that:
|
|
- "expected_config|symmetric_difference(ansible_facts.network_resources.vlans) == []"
|