()
| 78 | |
| 79 | |
| 80 | def test_align_center_middle(): |
| 81 | console = Console(file=io.StringIO(), width=10) |
| 82 | console.print(Align("foo\nbar", "center", vertical="middle"), height=5) |
| 83 | expected = " \n foo \n bar \n \n \n" |
| 84 | result = console.file.getvalue() |
| 85 | print(repr(result)) |
| 86 | assert result == expected |
| 87 | |
| 88 | |
| 89 | def test_align_fit(): |