(self)
| 979 | self.assertEqual(output, computed) |
| 980 | |
| 981 | def test_clinic_1(self): |
| 982 | self._test_clinic(""" |
| 983 | verbatim text here |
| 984 | lah dee dah |
| 985 | /*[copy input] |
| 986 | def |
| 987 | [copy start generated code]*/ |
| 988 | abc |
| 989 | /*[copy end generated code: output=03cfd743661f0797 input=7b18d017f89f61cf]*/ |
| 990 | xyz |
| 991 | """, """ |
| 992 | verbatim text here |
| 993 | lah dee dah |
| 994 | /*[copy input] |
| 995 | def |
| 996 | [copy start generated code]*/ |
| 997 | def |
| 998 | /*[copy end generated code: output=7b18d017f89f61cf input=7b18d017f89f61cf]*/ |
| 999 | xyz |
| 1000 | """) |
| 1001 | |
| 1002 | |
| 1003 | class ClinicParserTest(TestCase): |
nothing calls this directly
no test coverage detected