()
| 51 | |
| 52 | |
| 53 | def test_align_top(): |
| 54 | console = Console(file=io.StringIO(), width=10) |
| 55 | console.print(Align("foo", vertical="top"), height=5) |
| 56 | expected = "foo \n \n \n \n \n" |
| 57 | result = console.file.getvalue() |
| 58 | print(repr(result)) |
| 59 | assert result == expected |
| 60 | |
| 61 | |
| 62 | def test_align_middle(): |