(self)
| 1564 | self._delete_recursively(self._path) |
| 1565 | |
| 1566 | def test_initialize_with_eMM(self): |
| 1567 | # Initialize based on email.message.Message instance |
| 1568 | eMM = email.message_from_string(_sample_message) |
| 1569 | msg = self._factory(eMM) |
| 1570 | self._post_initialize_hook(msg) |
| 1571 | self._check_sample(msg) |
| 1572 | |
| 1573 | def test_initialize_with_string(self): |
| 1574 | # Initialize based on string |
nothing calls this directly
no test coverage detected