(self)
| 278 | |
| 279 | class TestPrettyModeRegression: |
| 280 | def setup_method(self) -> None: |
| 281 | configure_output(OutputMode.PRETTY) |
| 282 | |
| 283 | def test_print_key_value_pretty_with_title(self, capsys: pytest.CaptureFixture[str]) -> None: |
| 284 | print_key_value({"host": "localhost", "port": 6500}, "Config") |
nothing calls this directly
no test coverage detected