]> granicus.if.org Git - python/commitdiff
Simplification/cleanup in IndentTestCases.
authorGreg Ward <gward@python.net>
Thu, 22 Aug 2002 19:06:45 +0000 (19:06 +0000)
committerGreg Ward <gward@python.net>
Thu, 22 Aug 2002 19:06:45 +0000 (19:06 +0000)
Lib/test/test_textwrap.py

index bec5ac5902653162af6d0f73eef5c1b510e99752..227206cd3f705afc0050670741d2d824c7430eaa 100644 (file)
@@ -167,7 +167,7 @@ class IndentTestCases(BaseTestCase):
 
     # called before each test method
     def setUp(self):
-        self.testString = '''\
+        self.text = '''\
 This paragraph will be filled, first without any indentation,
 and then with some (including a hanging indent).'''
 
@@ -180,27 +180,21 @@ This paragraph will be filled, first
 without any indentation, and then with
 some (including a hanging indent).'''
 
-        result = fill(self.testString, 40)
+        result = fill(self.text, 40)
         self.check(result, expect)
 
 
     def test_initial_indent(self):
         '''Test initial_indent parameter.'''
 
-        expect = [
-            "     This paragraph will be filled,",
-            "first without any indentation, and then",
-            "with some (including a hanging indent)."]
-
-        result = wrap(self.testString, 40, initial_indent="     ")
+        expect = ["     This paragraph will be filled,",
+                  "first without any indentation, and then",
+                  "with some (including a hanging indent)."]
+        result = wrap(self.text, 40, initial_indent="     ")
         self.check(result, expect)
 
-        expect = '''\
-     This paragraph will be filled,
-first without any indentation, and then
-with some (including a hanging indent).'''
-
-        result = fill(self.testString, 40, initial_indent="     ")
+        expect = "\n".join(expect)
+        result = fill(self.text, 40, initial_indent="     ")
         self.check(result, expect)
 
 
@@ -213,8 +207,8 @@ with some (including a hanging indent).'''
     with some (including a hanging
     indent).'''
 
-        result = fill(self.testString, 40, initial_indent="  * ", 
-            subsequent_indent="    ")
+        result = fill(self.text, 40,
+                      initial_indent="  * ", subsequent_indent="    ")
         self.check(result, expect)