Test zer width characters being chopped.
(text: str, expected: list[str])
| 145 | ], |
| 146 | ) |
| 147 | def test_chop_cells_zero_width(text: str, expected: list[str]) -> None: |
| 148 | """Test zer width characters being chopped.""" |
| 149 | assert chop_cells(text, 3) == expected |
| 150 | |
| 151 | |
| 152 | def test_is_single_cell_widths() -> None: |
nothing calls this directly
no test coverage detected