ansible/test/integration/targets/ios_config/tests/cli/toplevel_nonidempotent.yaml
Nathaniel Case 381263ad99
ios test cleanup pt 2 (#42570)
* Remove local from ios_config to avoid needing to add provider

* ios_smoke should test all with local to pick up the slack
2018-07-10 09:03:04 -04:00

35 lines
774 B
YAML

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