Dedent text.
(self, text)
| 79 | self.assertEqual(getattr(md, key), value) |
| 80 | |
| 81 | def dedent(self, text): |
| 82 | """ |
| 83 | Dedent text. |
| 84 | """ |
| 85 | |
| 86 | # TODO: If/when actual output ends with a newline, then use: |
| 87 | # return textwrap.dedent(text.strip('/n')) |
| 88 | return textwrap.dedent(text).strip() |
| 89 | |
| 90 | |
| 91 | class recursionlimit: |
no outgoing calls
no test coverage detected