Mixed single and double-width characters.
()
| 129 | |
| 130 | |
| 131 | def test_chop_cells_mixed_width(): |
| 132 | """Mixed single and double-width characters.""" |
| 133 | text = "あ1り234が5と6う78" |
| 134 | assert chop_cells(text, 3) == ["あ1", "り2", "34", "が5", "と6", "う7", "8"] |
| 135 | |
| 136 | |
| 137 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected