From 34f995b3c17102c65dac184d8bce4ccff81a04a4 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Thu, 22 Aug 2002 21:10:07 +0000 Subject: [PATCH] Add test_unix_options() to WrapTestCase to test for SF bug #596434. --- Lib/test/test_textwrap.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/Lib/test/test_textwrap.py b/Lib/test/test_textwrap.py index a19e3ba89af..d6bd47c31b7 100644 --- a/Lib/test/test_textwrap.py +++ b/Lib/test/test_textwrap.py @@ -163,6 +163,34 @@ What a mess! "\nexpected %r\n" "but got %r" % (expect, result)) + def test_unix_options (self): + # Test that Unix-style command-line options are wrapped correctly. + # Both Optik (OptionParser) and Docutils rely on this behaviour! + + text = "You should use the -n option, or --dry-run in its long form." + self.check_wrap(text, 20, + ["You should use the", + "-n option, or --dry-", + "run in its long", + "form."]) + self.check_wrap(text, 21, + ["You should use the -n", + "option, or --dry-run", + "in its long form."]) + expect = ["You should use the -n option, or", + "--dry-run in its long form."] + self.check_wrap(text, 32, expect) + self.check_wrap(text, 34, expect) + self.check_wrap(text, 35, expect) + self.check_wrap(text, 38, expect) + expect = ["You should use the -n option, or --dry-", + "run in its long form."] + self.check_wrap(text, 39, expect) + self.check_wrap(text, 41, expect) + expect = ["You should use the -n option, or --dry-run", + "in its long form."] + self.check_wrap(text, 42, expect) + def test_split(self): # Ensure that the standard _split() method works as advertised # in the comments