()
| 835 | |
| 836 | |
| 837 | def test_update_options_markup() -> None: |
| 838 | console = Console() |
| 839 | options = console.options |
| 840 | assert options.update(markup=False).markup == False |
| 841 | assert options.update(markup=True).markup == True |
| 842 | |
| 843 | |
| 844 | def test_print_width_zero() -> None: |