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
This commit is contained in:
saichint
2017-07-27 06:32:35 -07:00
committed by Nathaniel Case
parent cee9b08e70
commit 9b9a8749da
66 changed files with 1158 additions and 80 deletions

View File

@@ -47,6 +47,8 @@ class TestNxosVrfModule(TestNxosModule):
output = list()
for command in commands:
if isinstance(command, dict):
command = command['command']
filename = str(command).split(' | ')[0].replace(' ', '_')
output.append(load_fixture('nxos_vrf', filename))
return output