def test_details_with_normal_line_label_true(self):
     expected = {
         '__label': 'First Table',
         'foo': 'BUILD',
         'bar': 'ERROR',
         'bee': 'None'
     }
     actual = output_parser.details(self.DETAILS_LINES1, with_label=True)
     self.assertEqual(expected, actual)
예제 #2
0
 def test_details_with_normal_line_label_true(self):
     expected = {'__label': 'First Table',
                 'foo': 'BUILD', 'bar': 'ERROR', 'bee': 'None'}
     actual = output_parser.details(self.DETAILS_LINES1, with_label=True)
     self.assertEqual(expected, actual)
예제 #3
0
 def test_details_with_normal_line_label_false(self):
     expected = {'foo': 'BUILD', 'bar': 'ERROR', 'bee': 'None'}
     actual = output_parser.details(self.DETAILS_LINES1)
     self.assertEqual(expected, actual)
 def test_details_with_normal_line_label_false(self):
     expected = {'foo': 'BUILD', 'bar': 'ERROR', 'bee': 'None'}
     actual = output_parser.details(self.DETAILS_LINES1)
     self.assertEqual(expected, actual)