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_lacp/tests/cli/replaced.yaml

35 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"