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

* Add tests

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

34 lines
635 B
YAML

---
- include_tasks: reset_config.yml
- set_fact:
config:
system:
priority: 20
- eos_facts:
gather_network_resources: lacp
become: yes
- name: Replaces device lacp configuration with provided configuration
eos_lacp:
config: "{{ config }}"
state: replaced
register: result
become: yes
- assert:
that:
- "ansible_facts.network_resources.lacp == result.before"
- eos_facts:
gather_network_resources: lacp
become: yes
- assert:
that:
- "ansible_facts.network_resources.lacp == result.after"
- assert:
that:
- "config == ansible_facts.network_resources.lacp"