The available width lies within a double-width character.
()
| 123 | |
| 124 | |
| 125 | def test_chop_cells_double_width_boundary(): |
| 126 | """The available width lies within a double-width character.""" |
| 127 | text = "ありがとう" |
| 128 | assert chop_cells(text, 3) == ["あ", "り", "が", "と", "う"] |
| 129 | |
| 130 | |
| 131 | def test_chop_cells_mixed_width(): |
nothing calls this directly
no test coverage detected