(self)
| 565 | self.assertEqual(set(dir(TE)), set(enum_dir(TE))) |
| 566 | |
| 567 | def test_dir_on_item(self): |
| 568 | TE = self.MainEnum |
| 569 | self.assertEqual(set(dir(TE.first)), set(member_dir(TE.first))) |
| 570 | |
| 571 | def test_dir_with_added_behavior(self): |
| 572 | class Test(self.enum_type): |
nothing calls this directly
no test coverage detected