(self)
| 1537 | """) |
| 1538 | |
| 1539 | def test_mangled_from(self): |
| 1540 | s = StringIO() |
| 1541 | g = Generator(s, mangle_from_=True) |
| 1542 | g.flatten(self.msg) |
| 1543 | self.assertEqual(s.getvalue(), """\ |
| 1544 | From: aaa@bbb.org |
| 1545 | |
| 1546 | >From the desk of A.A.A.: |
| 1547 | Blah blah blah |
| 1548 | """) |
| 1549 | |
| 1550 | def test_dont_mangle_from(self): |
| 1551 | s = StringIO() |
nothing calls this directly
no test coverage detected