(self, source)
| 35 | |
| 36 | class TestPreprocessing(unittest.TestCase): |
| 37 | def assertCompiles(self, source): |
| 38 | finished, parsable = code_finished_will_parse(source, compiler) |
| 39 | return finished and parsable |
| 40 | |
| 41 | def test_indent_empty_lines_nops(self): |
| 42 | self.assertEqual(preproc("hello"), "hello") |
no test coverage detected