You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/iosxr_template/tests/cli/basic.yaml

37 lines
643 B
YAML

---
- debug: msg="START cli/basic.yaml"
- name: setup
iosxr_config:
commands:
- no interface Loopback999
match: none
- name: configure device with config
iosxr_template:
src: basic/config.j2
register: result
- assert:
that:
- "result.changed == true"
- "result.updates is defined"
- name: check device with config
iosxr_template:
src: basic/config.j2
register: result
- assert:
that:
- "result.changed == false"
- "result.updates is defined"
- name: teardown
iosxr_config:
commands:
- no interface Loopback999
match: none
- debug: msg="END cli/basic.yaml"