Test with an empty string.
(self)
| 40 | ) |
| 41 | |
| 42 | def test_count_empty(self): |
| 43 | """Test with an empty string.""" |
| 44 | self.assertEqual(count_lines_with_wrapping(""), 0) |
| 45 | |
| 46 | def test_count_begins_with_empty_line(self): |
| 47 | """Test with a string which begins with a newline.""" |
nothing calls this directly
no test coverage detected