()
| 32 | |
| 33 | |
| 34 | def test_long_content_truncation() -> None: |
| 35 | data = [('Short', 'VeryVeryVeryLongContent')] |
| 36 | result = make_table(data, width=25) |
| 37 | lines = result.split('\n') |
| 38 | # fmt: off |
| 39 | assert lines == ['┌───────────┬───────────┐', |
| 40 | '│ Short │ VeryVe... │', |
| 41 | '└───────────┴───────────┘'] |
| 42 | # fmt: on |
nothing calls this directly
no test coverage detected