()
| 509 | |
| 510 | |
| 511 | def test_export_text() -> None: |
| 512 | console = Console(record=True, width=100) |
| 513 | console.print("[b]foo") |
| 514 | text = console.export_text() |
| 515 | expected = "foo\n" |
| 516 | assert text == expected |
| 517 | |
| 518 | |
| 519 | def test_export_html() -> None: |
nothing calls this directly
no test coverage detected