ansible/test/integration/targets/eos_lacp/tests/cli/reset_config.yml
Nathaniel Case 764a81fce7
New module eos_lacp (#60698)
* Initial builder import

* Add tests

* Implement facts & config
2019-08-20 16:11:31 -04:00

19 lines
324 B
YAML

---
- name: Reset initial config
cli_config:
config: |
lacp system-priority 10
become: yes
- eos_facts:
gather_network_resources: lacp
become: yes
- set_fact:
expected_config:
system:
priority: 10
- assert:
that:
- "expected_config == ansible_facts.network_resources.lacp"