ansible/test/integration/targets/ios_smoke/tests/cli/misc_tests.yaml
David Newswanger 01bd9759e3
[WIP] Add ios smoke tests (#35972)
* added basic ios_smoke files

* added smoke tests for network.common.config

* added tests for network.common.utils

* added remainder of test cases
2018-02-13 11:53:50 -05:00

22 lines
548 B
YAML

---
- debug: msg="START ios_smoke cli/misc_tests.yaml on connection={{ ansible_connection }}"
# hit network.ios.ios- get_defaults_flag()
- name: setup
ios_config:
commands:
- no description
- shutdown
parents:
- interface Loopback999
match: none
provider: "{{ cli }}"
- name: configure device with defaults included
ios_config:
src: defaults/config.j2
defaults: yes
provider: "{{ cli }}"
register: result
- debug: msg="END ios_smoke cli/misc_tests.yaml on connection={{ ansible_connection }}"