mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
50d148a7d6
* recalibrate tests and add new ones * add new cli tests * add new nxapi tests * Add new tests for cli and nxapi
39 lines
742 B
YAML
39 lines
742 B
YAML
---
|
|
- debug: msg="START {{ connection.transport }}/save.yaml"
|
|
|
|
# Select interface for test
|
|
- set_fact: intname="{{ nxos_int1 }}"
|
|
|
|
- name: setup
|
|
nxos_config:
|
|
commands:
|
|
- no description
|
|
- no shutdown
|
|
parents:
|
|
- "interface {{ intname }}"
|
|
match: none
|
|
provider: "{{ connection }}"
|
|
|
|
- name: save config
|
|
nxos_config:
|
|
save_when: always
|
|
timeout: 300
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: save should always run
|
|
nxos_config:
|
|
save_when: always
|
|
timeout: 300
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- debug: msg="END {{ connection.transport }}/save.yaml"
|