(self)
| 1825 | |
| 1826 | @reraise_if_not_enum(Answer) |
| 1827 | def test_pickle_enum_function(self): |
| 1828 | test_pickle_dump_load(self.assertIs, Answer.him) |
| 1829 | test_pickle_dump_load(self.assertIs, Answer) |
| 1830 | |
| 1831 | @reraise_if_not_enum(Question) |
| 1832 | def test_pickle_enum_function_with_module(self): |
nothing calls this directly
no test coverage detected