From c6edb3726833207887356e9ceedf7fbabf404f5c Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Thu, 22 Aug 2002 21:27:05 +0000 Subject: Test an em-dash with adjacent punctuation. --- Lib/test/test_textwrap.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Lib/test/test_textwrap.py b/Lib/test/test_textwrap.py index 36df52a..fc5d0cc 100644 --- a/Lib/test/test_textwrap.py +++ b/Lib/test/test_textwrap.py @@ -166,6 +166,12 @@ What a mess! "and", " ", "another!"] self.check_split(self.wrapper, text, expect) + text = "and then--bam!--he was gone" + expect = ["and", " ", "then", "--", "bam!", "--", + "he", " ", "was", " ", "gone"] + self.check_split(self.wrapper, text, expect) + + def test_unix_options (self): # Test that Unix-style command-line options are wrapped correctly. # Both Optik (OptionParser) and Docutils rely on this behaviour! -- cgit v0.12