(self)
| 1840 | eq(msg.get_payload(), 'hello there') |
| 1841 | |
| 1842 | def test_7bit_input(self): |
| 1843 | eq = self.assertEqual |
| 1844 | msg = MIMEText('hello there', _charset='us-ascii') |
| 1845 | eq(msg.get_charset().input_charset, 'us-ascii') |
| 1846 | eq(msg['content-type'], 'text/plain; charset="us-ascii"') |
| 1847 | |
| 1848 | def test_7bit_input_no_charset(self): |
| 1849 | eq = self.assertEqual |
nothing calls this directly
no test coverage detected