()
| 60 | |
| 61 | |
| 62 | def test_align_middle(): |
| 63 | console = Console(file=io.StringIO(), width=10) |
| 64 | console.print(Align("foo", vertical="middle"), height=5) |
| 65 | expected = " \n \nfoo \n \n \n" |
| 66 | result = console.file.getvalue() |
| 67 | print(repr(result)) |
| 68 | assert result == expected |
| 69 | |
| 70 | |
| 71 | def test_align_bottom(): |