ansible/test/integration/targets/eos_vlans/tests/common/reset_config.yml
Nathaniel Case e266e5f8b6
Allow httpapi for resource modules (#62843)
* Redo tests to be transport agnostic

cli -> eos config

Redirect connection for httpapi
2020-01-14 14:26:10 -05:00

30 lines
543 B
YAML

---
- name: Reset initial config
eos_config:
before:
no vlan 1-4094
defaults: yes
match: exact
lines: |
vlan 10
name ten
state active
vlan 20
name twenty
state active
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) == []"