(self)
| 992 | self.assertEqual(dedent(indent(text, ' ')), text) |
| 993 | |
| 994 | def test_roundtrip_tabs(self): |
| 995 | # A whitespace prefix should roundtrip with dedent |
| 996 | for text in self.ROUNDTRIP_CASES: |
| 997 | self.assertEqual(dedent(indent(text, '\t\t')), text) |
| 998 | |
| 999 | def test_roundtrip_mixed(self): |
| 1000 | # A whitespace prefix should roundtrip with dedent |
nothing calls this directly
no test coverage detected