ansible/test/integration/targets/nxos_vrf/tests/nxapi/sanity.yaml
saichint 9b9a8749da Add integration tests and fix nxos providers (#26913)
* fix issues with python3.x

* Add integration testa and fix for nxos_evpn_vni

* add nxos_evpn_vni to nxos.yaml

* fix get_vtp_config()

* add new integration tests

* fix rollback

* add integration test files
2017-07-27 09:32:35 -04:00

15 lines
333 B
YAML

---
- debug: msg="START TRANSPORT:NXAPI nxos_vrf sanity test"
- name: Ensure ntc VRF exists on switch
nxos_vrf:
vrf: ntc
provider: "{{ nxapi }}"
- name: Ensure ntc VRF does not exist on switch
nxos_vrf:
vrf: ntc
state: absent
provider: "{{ nxapi }}"
- debug: msg="END TRANSPORT:NXAPI nxos_vrf sanity test"