(self)
| 2518 | # Test the MIMEMessage class |
| 2519 | class TestMIMEMessage(TestEmailBase): |
| 2520 | def setUp(self): |
| 2521 | with openfile('msg_11.txt', encoding="utf-8") as fp: |
| 2522 | self._text = fp.read() |
| 2523 | |
| 2524 | def test_type_error(self): |
| 2525 | self.assertRaises(TypeError, MIMEMessage, 'a plain string') |