()
| 159 | |
| 160 | |
| 161 | def test_live_screen() -> None: |
| 162 | console = create_capture_console(width=20, height=5) |
| 163 | console.begin_capture() |
| 164 | with Live(Text("foo"), screen=True, console=console, auto_refresh=False) as live: |
| 165 | live.refresh() |
| 166 | result = console.end_capture() |
| 167 | print(repr(result)) |
| 168 | expected = "\x1b[?1049h\x1b[H\x1b[?25l\x1b[Hfoo \n \n \n \n \x1b[Hfoo \n \n \n \n \x1b[?25h\x1b[?1049l" |
| 169 | assert result == expected |
| 170 | |
| 171 | |
| 172 | def test_live_empty() -> None: |
nothing calls this directly
no test coverage detected