()
| 619 | |
| 620 | |
| 621 | def test_bell() -> None: |
| 622 | console = Console(force_terminal=True, _environ={}) |
| 623 | console.begin_capture() |
| 624 | console.bell() |
| 625 | assert console.end_capture() == "\x07" |
| 626 | |
| 627 | |
| 628 | def test_pager() -> None: |
nothing calls this directly
no test coverage detected