From 4a30bf55ac3a067c668058299cbd355ab63e9dd9 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Wed, 3 Apr 2013 10:40:30 +0200 Subject: Display full command documentation in online help ipa -h only showed the summary string, not the full help. Use the full docstring. Add a custom help formatter that disables optparse's reformatting. Test included https://fedorahosted.org/freeipa/ticket/3543 --- tests/test_cmdline/test_help.py | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'tests/test_cmdline/test_help.py') diff --git a/tests/test_cmdline/test_help.py b/tests/test_cmdline/test_help.py index 1ab3ddc4..4cf63368 100644 --- a/tests/test_cmdline/test_help.py +++ b/tests/test_cmdline/test_help.py @@ -128,3 +128,14 @@ def test_ambiguous_command_or_topic(): assert h_ctx.stderr == '' assert h_ctx.stdout != help_ctx.stdout + +def test_multiline_description(): + """Test that all of a multi-line command description appears in output + """ + # This assumes trust_add has multiline doc. Ensure it is so. + assert '\n\n' in unicode(api.Command.trust_add.doc).strip() + + with CLITestContext(exception=SystemExit) as help_ctx: + return_value = api.Backend.cli.run(['trust-add', '-h']) + + assert unicode(api.Command.trust_add.doc).strip() in help_ctx.stdout -- cgit