(self, input, output)
| 971 | """) |
| 972 | |
| 973 | def _test_clinic(self, input, output): |
| 974 | language = CLanguage(None) |
| 975 | c = Clinic(language, filename="file", limited_capi=False) |
| 976 | c.parsers['inert'] = InertParser(c) |
| 977 | c.parsers['copy'] = CopyParser(c) |
| 978 | computed = c.parse(input) |
| 979 | self.assertEqual(output, computed) |
| 980 | |
| 981 | def test_clinic_1(self): |
| 982 | self._test_clinic(""" |
no test coverage detected