(self)
| 4568 | class TestEmptyAndNonLatinStrings(unittest.TestCase): |
| 4569 | |
| 4570 | def test_empty_string(self): |
| 4571 | with self.assertRaises(ValueError): |
| 4572 | empty_abc = Enum('empty_abc', ('', 'B', 'C')) |
| 4573 | |
| 4574 | def test_non_latin_character_string(self): |
| 4575 | greek_abc = Enum('greek_abc', ('\u03B1', 'B', 'C')) |
nothing calls this directly
no test coverage detected