diff options
author | Greg Ward <gward@python.net> | 2004-05-13 01:53:10 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2004-05-13 01:53:10 (GMT) |
commit | f0ba764dbbbcc9613c81d3d66a45231f8f79e5cc (patch) | |
tree | 4b239d2bd6f040f69982604a8b2b7de27e505b7f /Lib/test/test_textwrap.py | |
parent | 10c660673eddab34571f1dd73b21fa3f7fc615b3 (diff) | |
download | cpython-f0ba764dbbbcc9613c81d3d66a45231f8f79e5cc.zip cpython-f0ba764dbbbcc9613c81d3d66a45231f8f79e5cc.tar.gz cpython-f0ba764dbbbcc9613c81d3d66a45231f8f79e5cc.tar.bz2 |
SF #847346: merge from release23-maint branch: remove misguided
optimization for short input; beef up tests for fix_sentence_endings
feature.
Diffstat (limited to 'Lib/test/test_textwrap.py')
-rw-r--r-- | Lib/test/test_textwrap.py | 46 |
1 files changed, 42 insertions, 4 deletions
diff --git a/Lib/test/test_textwrap.py b/Lib/test/test_textwrap.py index 9b8c58f..5ff4bcc 100644 --- a/Lib/test/test_textwrap.py +++ b/Lib/test/test_textwrap.py @@ -47,7 +47,7 @@ class BaseTestCase(unittest.TestCase): class WrapTestCase(BaseTestCase): def setUp(self): - self.wrapper = TextWrapper(width=45, fix_sentence_endings=True) + self.wrapper = TextWrapper(width=45) def test_simple(self): # Simple case: just words, spaces, and a bit of punctuation @@ -84,13 +84,51 @@ What a mess! "wrapped. Some lines are tabbed too. What a", "mess!"] - result = self.wrapper.wrap(text) + wrapper = TextWrapper(45, fix_sentence_endings=True) + result = wrapper.wrap(text) self.check(result, expect) - result = self.wrapper.fill(text) + result = wrapper.fill(text) self.check(result, '\n'.join(expect)) - + def test_fix_sentence_endings(self): + wrapper = TextWrapper(60, fix_sentence_endings=True) + + # SF #847346: ensure that fix_sentence_endings=True does the + # right thing even on input short enough that it doesn't need to + # be wrapped. + text = "A short line. Note the single space." + expect = ["A short line. Note the single space."] + self.check(wrapper.wrap(text), expect) + + # Test some of the hairy end cases that _fix_sentence_endings() + # is supposed to handle (the easy stuff is tested in + # test_whitespace() above). + text = "Well, Doctor? What do you think?" + expect = ["Well, Doctor? What do you think?"] + self.check(wrapper.wrap(text), expect) + + text = "Well, Doctor?\nWhat do you think?" + self.check(wrapper.wrap(text), expect) + + text = 'I say, chaps! Anyone for "tennis?"\nHmmph!' + expect = ['I say, chaps! Anyone for "tennis?" Hmmph!'] + self.check(wrapper.wrap(text), expect) + + wrapper.width = 20 + expect = ['I say, chaps!', 'Anyone for "tennis?"', 'Hmmph!'] + self.check(wrapper.wrap(text), expect) + + text = 'And she said, "Go to hell!"\nCan you believe that?' + expect = ['And she said, "Go to', + 'hell!" Can you', + 'believe that?'] + self.check(wrapper.wrap(text), expect) + + wrapper.width = 60 + expect = ['And she said, "Go to hell!" Can you believe that?'] + self.check(wrapper.wrap(text), expect) + def test_wrap_short(self): # Wrapping to make short lines longer |