(self)
| 730 | |
| 731 | # Issue 1078919 |
| 732 | def test_ascii_add_header(self): |
| 733 | msg = Message() |
| 734 | msg.add_header('Content-Disposition', 'attachment', |
| 735 | filename='bud.gif') |
| 736 | self.assertEqual('attachment; filename="bud.gif"', |
| 737 | msg['Content-Disposition']) |
| 738 | |
| 739 | def test_noascii_add_header(self): |
| 740 | msg = Message() |
nothing calls this directly
no test coverage detected