(help_app: HelpApp)
| 1431 | |
| 1432 | |
| 1433 | def test_render_columns_too_wide(help_app: HelpApp) -> None: |
| 1434 | commands = ["kind_of_long_string", "a_slightly_longer_string"] |
| 1435 | result = help_app.render_columns(commands, display_width=10) |
| 1436 | |
| 1437 | expected = "kind_of_long_string \na_slightly_longer_string" |
| 1438 | assert result == expected |
| 1439 | |
| 1440 | |
| 1441 | def test_columnize(capsys: pytest.CaptureFixture[str]) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…