(self)
| 963 | ) |
| 964 | |
| 965 | def test_indent_nomargin_default(self): |
| 966 | # indent should do nothing if 'prefix' is empty. |
| 967 | for text in self.CASES: |
| 968 | self.assertEqual(indent(text, ''), text) |
| 969 | |
| 970 | def test_indent_nomargin_explicit_default(self): |
| 971 | # The same as test_indent_nomargin, but explicitly requesting |
nothing calls this directly
no test coverage detected