We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d8ac43 commit 850b234Copy full SHA for 850b234
tests/test_cmd2.py
@@ -46,6 +46,11 @@ def test_base_help_verbose(base_app):
46
expected = normalize(BASE_HELP_VERBOSE)
47
assert out == expected
48
49
+ # Make sure :param type lines are filtered out of help summary
50
+ help_doc = base_app.do_help.__func__.__doc__
51
+ help_doc += "\n:param fake param"
52
+ base_app.do_help.__func__.__doc__ = help_doc
53
+
54
out = run_cmd(base_app, 'help --verbose')
55
56
0 commit comments