예제 #1
0
 def test_show_cdp_neighbors_empty_output(self):
     self.maxDiff = None
     self.device = Mock(**self.empty_device_output)
     obj = ShowCdpNeighbors(device=self.device)
     with self.assertRaises(SchemaEmptyParserError):
         parsed_output = obj.parse()
예제 #2
0
 def test_show_cdp_neighbors_5(self):
     self.maxDiff = None
     self.device = Mock(**self.device_output_5)
     obj = ShowCdpNeighbors(device=self.device)
     parsed_output = obj.parse()
     self.assertEqual(parsed_output, self.expected_parsed_output_5)