()
| 43 | |
| 44 | |
| 45 | def test_split_lines_terminator_single_line(): |
| 46 | lines = [Segment("Hello")] |
| 47 | assert list(Segment.split_lines_terminator(lines)) == [ |
| 48 | ([Segment("Hello")], False), |
| 49 | ] |
| 50 | |
| 51 | |
| 52 | def test_split_and_crop_lines(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…