ansible/test/integration/targets/cnos_config/tests/cli/basic.yaml
2019-04-05 21:50:29 -04:00

35 lines
663 B
YAML

---
- debug: msg="START cli/basic.yaml"
- name: setup
cnos_config:
commands:
- no vlan 13\n
ignore_errors: yes
- name: configure device with config
cnos_config:
src: roles/cnos_config/templates/basic/config.j2
register: result
- assert:
that:
- "result.changed == true"
- "result.updates is not defined"
- name: check device with config
cnos_config:
src: roles/cnos_config/templates/basic/config.j2
register: result
- assert:
that:
- "result.changed == true"
- "result.updates is not defined"
- name: teardown
cnos_config:
commands:
- no vlan 13\n
- debug: msg="END cli/basic.yaml"