You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/eos_vlans/tests/cli/reset_config.yml

26 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) == []"