mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
2f46f8f944
* Support for network_cli plugin and tests * Fixed ansible-test * issues * Fixed Pylint warning * Fixed the sanity test errors * Fix YAMLlinter issue - removed blank spaces * Fixed Python 3 failures * Fixed the PEP8 issue * Fix sanity --test validate-modules * Reverted the changes to the doc fragments
42 lines
808 B
YAML
Executable file
42 lines
808 B
YAML
Executable file
---
|
|
- debug: msg="START cli/basic.yaml"
|
|
|
|
- name: setup
|
|
dellos10_config:
|
|
commands:
|
|
- interface loopback 999
|
|
- no interface loopback 999
|
|
match: none
|
|
provider: "{{ cli }}"
|
|
ignore_errors: yes
|
|
|
|
- name: configure device with config
|
|
dellos10_config:
|
|
src: basic/config.j2
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "result.updates is defined"
|
|
|
|
- name: check device with config
|
|
dellos10_config:
|
|
src: basic/config.j2
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
- "result.updates is defined"
|
|
|
|
- name: teardown
|
|
dellos10_config:
|
|
commands:
|
|
- no interface loopback999
|
|
match: none
|
|
provider: "{{ cli }}"
|
|
|
|
- debug: msg="END cli/basic.yaml"
|