Test an em-dash with adjacent punctuation.

This commit is contained in:
Greg Ward 2002-08-22 21:27:05 +00:00
parent 715debd3d1
commit c6edb37268
1 changed files with 6 additions and 0 deletions

View File

@ -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!