Exemple #1
0
 def test_golden(self):
     self.maxDiff = None
     self.device = Mock(**self.golden_output)
     obj = ShowEtherchannelSummary(device=self.device)
     parsed_output = obj.parse()
     self.assertEqual(parsed_output,self.golden_parsed_output)
Exemple #2
0
 def test_empty(self):
     self.device = Mock(**self.empty_output)
     obj = ShowEtherchannelSummary(device=self.device)
     with self.assertRaises(SchemaEmptyParserError):
         parsed_output = obj.parse()