(self)
| 1515 | """) |
| 1516 | |
| 1517 | def test_mangled_from(self): |
| 1518 | s = StringIO() |
| 1519 | g = Generator(s, mangle_from_=True) |
| 1520 | g.flatten(self.msg) |
| 1521 | self.assertEqual(s.getvalue(), """\ |
| 1522 | From: aaa@bbb.org |
| 1523 | |
| 1524 | >From the desk of A.A.A.: |
| 1525 | Blah blah blah |
| 1526 | """) |
| 1527 | |
| 1528 | def test_dont_mangle_from(self): |
| 1529 | s = StringIO() |
nothing calls this directly
no test coverage detected