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_lldp_global/tests/cli/deleted.yaml

29 lines
571 B
YAML

---
- include_tasks: reset_config.yml
- eos_facts:
gather_network_resources: lldp_global
become: yes
- name: Returns LLDP configuration to default parameters
eos_lldp_global:
state: deleted
register: result
become: yes
- assert:
that:
- "ansible_facts.network_resources.lldp_global == result.before"
- eos_facts:
gather_network_resources: lldp_global
become: yes
- assert:
that:
- "ansible_facts.network_resources.lldp_global == result.after"
- assert:
that:
- "ansible_facts.network_resources.lldp_global == {}"