(helpcat_app)
| 1486 | |
| 1487 | |
| 1488 | def test_help_cat_base(helpcat_app) -> None: |
| 1489 | out, _err = run_cmd(helpcat_app, "help") |
| 1490 | assert helpcat_app.last_result is True |
| 1491 | verify_help_text(helpcat_app, out) |
| 1492 | |
| 1493 | help_text = "".join(out) |
| 1494 | assert helpcat_app.CUSTOM_CATEGORY in help_text |
| 1495 | assert helpcat_app.SOME_CATEGORY in help_text |
| 1496 | assert helpcat_app.DEFAULT_CATEGORY in help_text |
| 1497 | |
| 1498 | |
| 1499 | def test_help_cat_verbose(helpcat_app) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…