(self)
| 1795 | |
| 1796 | @reraise_if_not_enum(Answer) |
| 1797 | def test_pickle_enum_function(self): |
| 1798 | test_pickle_dump_load(self.assertIs, Answer.him) |
| 1799 | test_pickle_dump_load(self.assertIs, Answer) |
| 1800 | |
| 1801 | @reraise_if_not_enum(Question) |
| 1802 | def test_pickle_enum_function_with_module(self): |
nothing calls this directly
no test coverage detected