(self)
| 2584 | # Test the MIMEMessage class |
| 2585 | class TestMIMEMessage(TestEmailBase): |
| 2586 | def setUp(self): |
| 2587 | with openfile('msg_11.txt', encoding="utf-8") as fp: |
| 2588 | self._text = fp.read() |
| 2589 | |
| 2590 | def test_type_error(self): |
| 2591 | self.assertRaises(TypeError, MIMEMessage, 'a plain string') |