20f93816d6
* 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
38 lines
767 B
YAML
38 lines
767 B
YAML
---
|
|
- debug: msg="START eapi/src_basic.yaml"
|
|
|
|
- name: setup
|
|
eos_config:
|
|
commands:
|
|
- no description
|
|
- no shutdown
|
|
parents:
|
|
- interface Ethernet2
|
|
match: none
|
|
become: yes
|
|
|
|
- name: configure device with config
|
|
eos_config:
|
|
src: basic/config.j2
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
# https://github.com/ansible/ansible-modules-core/issues/4807
|
|
- "result.updates is defined"
|
|
|
|
- name: check device with config
|
|
eos_config:
|
|
src: basic/config.j2
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
# https://github.com/ansible/ansible-modules-core/issues/4807
|
|
- "result.updates is not defined"
|
|
|
|
- debug: msg="END eapi/src_basic.yaml"
|