()
| 22 | |
| 23 | |
| 24 | def test_live_state() -> None: |
| 25 | with Live("") as live: |
| 26 | assert live._started |
| 27 | live.start() |
| 28 | |
| 29 | assert live.get_renderable() == "" |
| 30 | |
| 31 | assert live._started |
| 32 | live.stop() |
| 33 | assert not live._started |
| 34 | |
| 35 | assert not live._started |
| 36 | |
| 37 | |
| 38 | def test_growing_display() -> None: |
nothing calls this directly
no test coverage detected