(self)
| 1618 | '{} attribute does not exist'.format(attr)) |
| 1619 | |
| 1620 | def test_become_message(self): |
| 1621 | # Take on the state of another message |
| 1622 | eMM = email.message_from_string(_sample_message) |
| 1623 | msg = self._factory() |
| 1624 | msg._become_message(eMM) |
| 1625 | self._check_sample(msg) |
| 1626 | |
| 1627 | def test_explain_to(self): |
| 1628 | # Copy self's format-specific data to other message formats. |
nothing calls this directly
no test coverage detected