()
| 265 | |
| 266 | |
| 267 | def test_small_width() -> None: |
| 268 | test = ["Hello world! 12345"] |
| 269 | result = pretty_repr(test, max_width=10) |
| 270 | expected = "[\n 'Hello world! 12345'\n]" |
| 271 | assert result == expected |
| 272 | |
| 273 | |
| 274 | def test_ansi_in_pretty_repr() -> None: |
nothing calls this directly
no test coverage detected