(self)
| 1549 | self._delete_recursively(self._path) |
| 1550 | |
| 1551 | def test_initialize_with_eMM(self): |
| 1552 | # Initialize based on email.message.Message instance |
| 1553 | eMM = email.message_from_string(_sample_message) |
| 1554 | msg = self._factory(eMM) |
| 1555 | self._post_initialize_hook(msg) |
| 1556 | self._check_sample(msg) |
| 1557 | |
| 1558 | def test_initialize_with_string(self): |
| 1559 | # Initialize based on string |
nothing calls this directly
no test coverage detected