(self)
| 1818 | eq(msg.get_payload(), 'hello there') |
| 1819 | |
| 1820 | def test_7bit_input(self): |
| 1821 | eq = self.assertEqual |
| 1822 | msg = MIMEText('hello there', _charset='us-ascii') |
| 1823 | eq(msg.get_charset().input_charset, 'us-ascii') |
| 1824 | eq(msg['content-type'], 'text/plain; charset="us-ascii"') |
| 1825 | |
| 1826 | def test_7bit_input_no_charset(self): |
| 1827 | eq = self.assertEqual |
nothing calls this directly
no test coverage detected