ansible/test/integration/targets/ios_config/tests/cli/toplevel_nonidempotent.yaml
John R Barker a12033a6e0 integration/targets/ios_* work to support IOS (#20414)
* WIP

* Don't set connection: network_cli in the playbook

* ios_config tests now passing

* Create test loopback device

* delete

* ios_* pass (apart from ios_facts)

* Remove provider lines
2017-01-20 20:18:12 +00:00

35 lines
696 B
YAML

---
- debug: msg="START cli/toplevel_nonidempotent.yaml"
- 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"