multiple fixes nxos (#32903)

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
Trishna Guha
2017-11-14 15:23:11 +00:00
committed by GitHub
parent 177a4fb3ec
commit 3ee2501c83
5 changed files with 14 additions and 13 deletions

View File

@@ -62,14 +62,12 @@ class TestNxosInterfaceModule(TestNxosModule):
def test_nxos_interface_up(self):
set_module_args(dict(interface='loopback0'))
result = self.execute_module(changed=True)
self.assertIn('interface loopback0', result['commands'])
self.assertIn('no shutdown', result['commands'])
self.assertEqual(result['commands'], ['interface loopback0', 'no shutdown'])
def test_nxos_interface_down(self):
set_module_args(dict(interface='loopback0', admin_state='down'))
result = self.execute_module(changed=True)
self.assertIn('interface loopback0', result['commands'])
self.assertIn('shutdown', result['commands'])
self.assertEqual(result['commands'], ['interface loopback0', 'shutdown'])
def test_nxos_interface_delete(self):
set_module_args(dict(interface='loopback0', state='absent'))