(self)
| 981 | self.assertEqual(indent(text, '', predicate), text) |
| 982 | |
| 983 | def test_indent_no_lines(self): |
| 984 | # Explicitly skip indenting any lines |
| 985 | predicate = lambda line: False |
| 986 | for text in self.CASES: |
| 987 | self.assertEqual(indent(text, ' ', predicate), text) |
| 988 | |
| 989 | def test_roundtrip_spaces(self): |
| 990 | # A whitespace prefix should roundtrip with dedent |
nothing calls this directly
no test coverage detected