(help_app: HelpApp)
| 1402 | |
| 1403 | |
| 1404 | def test_help_verbose(help_app: HelpApp) -> None: |
| 1405 | out, _err = run_cmd(help_app, "help --verbose") |
| 1406 | expected_verbose = utils.strip_doc_annotations(help_app.do_parser_cmd.__doc__) |
| 1407 | verify_help_text(help_app, out, verbose_strings=[expected_verbose]) |
| 1408 | |
| 1409 | |
| 1410 | def test_help_verbose_with_fake_command(capsys) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…