(self)
| 66 | self.check_wrap(text, 80, [text]) |
| 67 | |
| 68 | def test_empty_string(self): |
| 69 | # Check that wrapping the empty string returns an empty list. |
| 70 | self.check_wrap("", 6, []) |
| 71 | self.check_wrap("", 6, [], drop_whitespace=False) |
| 72 | |
| 73 | def test_empty_string_with_initial_indent(self): |
| 74 | # Check that the empty string is not indented. |
nothing calls this directly
no test coverage detected