(self)
| 997 | self.assertEqual(dedent(indent(text, '\t\t')), text) |
| 998 | |
| 999 | def test_roundtrip_mixed(self): |
| 1000 | # A whitespace prefix should roundtrip with dedent |
| 1001 | for text in self.ROUNDTRIP_CASES: |
| 1002 | self.assertEqual(dedent(indent(text, ' \t \t ')), text) |
| 1003 | |
| 1004 | def test_indent_default(self): |
| 1005 | # Test default indenting of lines that are not whitespace only |
nothing calls this directly
no test coverage detected