Example #1
0
    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.text, 40, initial_indent="     ")
        self.check(result, expect)

        expect = "\n".join(expect)
        result = fill(self.text, 40, initial_indent="     ")
        self.check(result, expect)
Example #2
0
 def check_wrap(self, text, width, expect, **kwargs):
     result = wrap(text, width, **kwargs)
     self.check(result, expect)