| 427 | |
| 428 | def test_attribute_deletion(self): |
| 429 | class Season(self.enum_type): |
| 430 | SPRING = auto() |
| 431 | SUMMER = auto() |
| 432 | AUTUMN = auto() |
| 433 | # |
| 434 | def spam(cls): |
| 435 | pass |
| 436 | # |
| 437 | self.assertHasAttr(Season, 'spam') |
| 438 | del Season.spam |
nothing calls this directly
no test coverage detected
searching dependent graphs…