ansible/test/integration/targets/eos_config/tests/eapi/save.yaml
Ricardo Carrillo Cruz ca5439e1e2 Switch to save_when on EAPI tests as well (#26807)
save is deprecated.
2017-07-14 16:15:23 +02:00

35 lines
571 B
YAML

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