(self)
| 116 | configure_output(OutputMode.PLAIN) |
| 117 | |
| 118 | def teardown_method(self) -> None: |
| 119 | configure_output(OutputMode.PRETTY) |
| 120 | |
| 121 | def test_print_line_strips_markup(self, capsys: pytest.CaptureFixture[str]) -> None: |
| 122 | print_line("[bold]Hello[/bold] [cyan]World[/cyan]") |
nothing calls this directly
no test coverage detected