c53dcd1982
* Remove platform agnostic net_* test cases. * Add minimal platform agnostic test cases to individual platform-specific test cases
27 lines
682 B
YAML
27 lines
682 B
YAML
---
|
|
- debug: msg="START junos netconf/net_lldp.yaml on connection={{ ansible_connection }}"
|
|
|
|
# Add minimal testcase to check args are passed correctly to
|
|
# implementation module and module run is successful.
|
|
|
|
- name: setup - Disable lldp - setup
|
|
net_lldp:
|
|
state: absent
|
|
provider: "{{ netconf }}"
|
|
|
|
- name: Enable lldp using platform agnostic module
|
|
net_lldp:
|
|
state: present
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: setup - Disable lldp - teardown
|
|
net_lldp:
|
|
state: absent
|
|
provider: "{{ netconf }}"
|
|
|
|
- debug: msg="START junos netconf/net_lldp.yaml on connection={{ ansible_connection }}"
|