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/ios_config/tests/cli/toplevel.yaml

34 lines
633 B
YAML

---
- debug: msg="START cli/toplevel.yaml"
- name: setup
ios_config:
lines: ['hostname {{ shorter_hostname }}']
match: none
- name: configure top level command
ios_config:
lines: ['hostname foo']
register: result
- assert:
that:
- "result.changed == true"
- "'hostname foo' in result.updates"
- name: configure top level command idempotent check
ios_config:
lines: ['hostname foo']
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
ios_config:
lines: ['hostname {{ shorter_hostname }}']
match: none
- debug: msg="END cli/toplevel.yaml"