MCPcopy Index your code
hub / github.com/python-cmd2/cmd2 / test_help_headers

Function test_help_headers

tests/test_cmd2.py:1353–1361  ·  view source on GitHub ↗
(capsys)

Source from the content-addressed store, hash-verified

1351
1352
1353def test_help_headers(capsys) -> None:
1354 help_app = HelpApp()
1355 help_app.onecmd_plus_hooks("help")
1356 out, _err = capsys.readouterr()
1357
1358 assert help_app.doc_leader in out
1359 assert HelpApp.DEFAULT_CATEGORY in out
1360 assert HelpApp.MISC_HEADER in out
1361 assert help_app.last_result is True
1362
1363
1364def test_custom_command_help(help_app) -> None:

Callers

nothing calls this directly

Calls 2

HelpAppClass · 0.85
onecmd_plus_hooksMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…