(self)
| 1548 | """) |
| 1549 | |
| 1550 | def test_dont_mangle_from(self): |
| 1551 | s = StringIO() |
| 1552 | g = Generator(s, mangle_from_=False) |
| 1553 | g.flatten(self.msg) |
| 1554 | self.assertEqual(s.getvalue(), """\ |
| 1555 | From: aaa@bbb.org |
| 1556 | |
| 1557 | From the desk of A.A.A.: |
| 1558 | Blah blah blah |
| 1559 | """) |
| 1560 | |
| 1561 | def test_mangle_from_in_preamble_and_epilog(self): |
| 1562 | s = StringIO() |
nothing calls this directly
no test coverage detected