(self)
| 573 | |
| 574 | class LongWordTestCase (BaseTestCase): |
| 575 | def setUp(self): |
| 576 | self.wrapper = TextWrapper() |
| 577 | self.text = '''\ |
| 578 | Did you say "supercalifragilisticexpialidocious?" |
| 579 | How *do* you spell that odd word, anyways? |
| 580 | ''' |
| 581 | |
| 582 | def test_break_long(self): |
| 583 | # Wrap text with long words and lots of punctuation |
nothing calls this directly
no test coverage detected