ansible/test/integration/targets/eos_lldp_global/tests/cli/deleted.yaml
Nathaniel Case a567a3fae0
New module eos_lldp_global (#60975)
* New module eos_lldp_global

* Implement facts

* Implement config, add tests

* Assorted fixes
2019-08-26 11:34:41 -04:00

28 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 == {}"