(print_text, result)
| 706 | ], |
| 707 | ) |
| 708 | def test_print(print_text, result): |
| 709 | console = Console(record=True) |
| 710 | console.print(*print_text) |
| 711 | assert console.export_text(styles=False) == result |
| 712 | |
| 713 | |
| 714 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected