(self)
| 356 | " ", "wubba"]) |
| 357 | |
| 358 | def test_drop_whitespace_false(self): |
| 359 | # Check that drop_whitespace=False preserves whitespace. |
| 360 | # SF patch #1581073 |
| 361 | text = " This is a sentence with much whitespace." |
| 362 | self.check_wrap(text, 10, |
| 363 | [" This is a", " ", "sentence ", |
| 364 | "with ", "much white", "space."], |
| 365 | drop_whitespace=False) |
| 366 | |
| 367 | def test_drop_whitespace_false_whitespace_only(self): |
| 368 | # Check that drop_whitespace=False preserves a whitespace-only string. |
nothing calls this directly
no test coverage detected