(self)
| 46 | class WrapTestCase(BaseTestCase): |
| 47 | |
| 48 | def setUp(self): |
| 49 | self.wrapper = TextWrapper(width=45) |
| 50 | |
| 51 | def test_simple(self): |
| 52 | # Simple case: just words, spaces, and a bit of punctuation |
nothing calls this directly
no test coverage detected