848327a6b5
* Fix eapi tests to use become (#40838)
* Return the expected prompt character based on become status
* Update eos_banner tests for eapi
* Update eos_config tests for eapi
* Update eos_facts tests for eapi
* Update eos_interface tests for eapi
* Update eos_l3_interface tests for eapi
* Update eos_lldp tests for eapi
* Update eos_logging tests for eapi
* Update eos_smoke tests for eapi
* Update eos_system tests for eapi
(cherry picked from commit 20f93816d6
)
* Remove local from most eos tests now that provider is out
32 lines
508 B
YAML
32 lines
508 B
YAML
---
|
|
- debug: msg="START eapi/save.yaml"
|
|
|
|
- name: setup
|
|
eos_config:
|
|
commands:
|
|
- no description
|
|
- no shutdown
|
|
parents:
|
|
- interface Ethernet2
|
|
match: none
|
|
become: yes
|
|
|
|
|
|
- name: save config always
|
|
eos_config: &always
|
|
save_when: always
|
|
become: yes
|
|
register: result
|
|
|
|
- assert: &changed
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: save should always run
|
|
eos_config: *always
|
|
become: yes
|
|
register: result
|
|
|
|
- assert: *changed
|
|
|
|
- debug: msg="END eapi/save.yaml"
|