Non printable characters should report a width of 0.
()
| 248 | |
| 249 | |
| 250 | def test_non_printable(): |
| 251 | """Non printable characters should report a width of 0.""" |
| 252 | for ordinal in range(31): |
| 253 | character = chr(ordinal) |
| 254 | assert cell_len(character) == 0 |
nothing calls this directly
no test coverage detected