(self)
| 987 | self.assertEqual(indent(text, ' ', predicate), text) |
| 988 | |
| 989 | def test_roundtrip_spaces(self): |
| 990 | # A whitespace prefix should roundtrip with dedent |
| 991 | for text in self.ROUNDTRIP_CASES: |
| 992 | self.assertEqual(dedent(indent(text, ' ')), text) |
| 993 | |
| 994 | def test_roundtrip_tabs(self): |
| 995 | # A whitespace prefix should roundtrip with dedent |
nothing calls this directly
no test coverage detected