()
| 455 | |
| 456 | |
| 457 | def test_wrap_3(): |
| 458 | text = Text("foo bar baz") |
| 459 | lines = text.wrap(Console(), 3) |
| 460 | print(repr(lines)) |
| 461 | assert len(lines) == 3 |
| 462 | assert lines[0] == Text("foo") |
| 463 | assert lines[1] == Text("bar") |
| 464 | assert lines[2] == Text("baz") |
| 465 | |
| 466 | |
| 467 | def test_wrap_4(): |