ansible/test/integration/targets/eos_config/tests/eapi/save.yaml

36 lines
571 B
YAML
Raw Normal View History

---
- debug: msg="START eapi/save.yaml"
- name: setup
eos_config:
commands:
- no description
- no shutdown
parents:
- interface Ethernet2
match: none
provider: "{{ eapi }}"
- name: save config
eos_config:
save_when: always
provider: "{{ eapi }}"
register: result
- assert:
that:
- "result.changed == true"
- name: save should always run
eos_config:
save_when: always
provider: "{{ eapi }}"
register: result
- assert:
that:
- "result.changed == true"
- debug: msg="END eapi/save.yaml"