(helpcat_app)
| 1497 | |
| 1498 | |
| 1499 | def test_help_cat_verbose(helpcat_app) -> None: |
| 1500 | out, _err = run_cmd(helpcat_app, "help --verbose") |
| 1501 | assert helpcat_app.last_result is True |
| 1502 | verify_help_text(helpcat_app, out) |
| 1503 | |
| 1504 | help_text = "".join(out) |
| 1505 | assert helpcat_app.CUSTOM_CATEGORY in help_text |
| 1506 | assert helpcat_app.SOME_CATEGORY in help_text |
| 1507 | assert helpcat_app.DEFAULT_CATEGORY in help_text |
| 1508 | |
| 1509 | |
| 1510 | class SelectApp(cmd2.Cmd): |
nothing calls this directly
no test coverage detected
searching dependent graphs…