(
text: str, expected_spans: list[CellSpan], expected_cell_length: int
)
| 222 | ], |
| 223 | ) |
| 224 | def test_split_graphemes( |
| 225 | text: str, expected_spans: list[CellSpan], expected_cell_length: int |
| 226 | ): |
| 227 | spans, cell_length = split_graphemes(text) |
| 228 | print(spans) |
| 229 | assert cell_len(text) == expected_cell_length |
| 230 | assert spans == expected_spans |
| 231 | assert cell_length == expected_cell_length |
| 232 | |
| 233 | |
| 234 | def test_nerd_font(): |
nothing calls this directly
no test coverage detected