()
| 93 | |
| 94 | |
| 95 | def test_align_right_style(): |
| 96 | console = Console( |
| 97 | file=io.StringIO(), |
| 98 | width=10, |
| 99 | color_system="truecolor", |
| 100 | force_terminal=True, |
| 101 | _environ={}, |
| 102 | ) |
| 103 | console.print(Align("foo", "right", style="on blue")) |
| 104 | assert console.file.getvalue() == "\x1b[44m \x1b[0m\x1b[44mfoo\x1b[0m\n" |
| 105 | |
| 106 | |
| 107 | def test_measure(): |