diff options
Diffstat (limited to 'Lib/test/test_enum.py')
-rw-r--r-- | Lib/test/test_enum.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_enum.py b/Lib/test/test_enum.py index 04a68cc..43f98c1 100644 --- a/Lib/test/test_enum.py +++ b/Lib/test/test_enum.py @@ -1433,6 +1433,8 @@ class TestEnum(unittest.TestCase): with self.assertRaisesRegex(TypeError, "EvenMoreColor: cannot extend enumeration 'Color'"): class EvenMoreColor(Color, IntEnum): chartruese = 7 + with self.assertRaisesRegex(TypeError, "Foo: cannot extend enumeration 'Color'"): + Color('Foo', ('pink', 'black')) def test_exclude_methods(self): class whatever(Enum): |