Home | History | Annotate | Download | only in test

Lines Matching full:efg

30         self.assertRaises(ValueError, namedtuple, 'abc%', 'efg ghi')       # type has non-alpha char
31 self.assertRaises(ValueError, namedtuple, 'class', 'efg ghi') # type has keyword
32 self.assertRaises(ValueError, namedtuple, '9abc', 'efg ghi') # type starts with digit
34 self.assertRaises(ValueError, namedtuple, 'abc', 'efg g%hi') # field with non-alpha char
36 self.assertRaises(ValueError, namedtuple, 'abc', '8efg 9ghi') # field starts with digit
38 self.assertRaises(ValueError, namedtuple, 'abc', 'efg efg ghi') # duplicate field
59 [('efg', 'g%hi'), ('efg', '_1')], # field with non-alpha char
61 [('8efg', '9ghi'), ('_0', '_1')], # field starts with digit
63 [('abc', 'efg', 'efg', 'ghi'), ('abc', 'efg', '_2', 'ghi')], # duplicate field