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

* added smoke tests for network.common.config

* added tests for network.common.utils

* added remainder of test cases

(cherry picked from commit 01bd9759e3)
2018-02-13 14:06:09 -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 }}"