(self, text)
| 1003 | class ClinicParserTest(TestCase): |
| 1004 | |
| 1005 | def parse(self, text): |
| 1006 | c = _make_clinic() |
| 1007 | parser = DSLParser(c) |
| 1008 | block = Block(text) |
| 1009 | parser.parse(block) |
| 1010 | return block |
| 1011 | |
| 1012 | def parse_function(self, text, signatures_in_block=2, function_index=1): |
| 1013 | block = self.parse(text) |
no test coverage detected