(self)
| 160 | |
| 161 | |
| 162 | def test_wrap_short_1line(self): |
| 163 | # Test endcases |
| 164 | |
| 165 | text = "This is a short line." |
| 166 | |
| 167 | self.check_wrap(text, 30, ["This is a short line."]) |
| 168 | self.check_wrap(text, 30, ["(1) This is a short line."], |
| 169 | initial_indent="(1) ") |
| 170 | |
| 171 | |
| 172 | def test_hyphenated(self): |
nothing calls this directly
no test coverage detected