ansible/test/integration/targets/ios_system/tests/cli/set_hostname.yaml
Nathaniel Case f3337e1fba
ios test changes (#35510)
* Fix over-byte

* Update ios tests to call `provider`

To continue to support testing `connection: local`

* Fix command dict handling in ios_user

* Clean up unit tests, too
2018-02-02 09:50:15 -05:00

36 lines
702 B
YAML

---
- debug: msg="START cli/set_hostname.yaml on connection={{ ansible_connection }}"
- name: setup
ios_config:
lines: hostname switch
match: none
provider: "{{ cli }}"
- name: configure hostname
ios_system:
hostname: foo
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == true"
- name: verify hostname
ios_system:
hostname: foo
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
ios_config:
lines: "hostname {{ inventory_hostname }}"
match: none
provider: "{{ cli }}"
- debug: msg="END cli/set_hostname.yaml on connection={{ ansible_connection }}"