(ordering, blowUp=False)
| 50 | |
| 51 | |
| 52 | def cleanup(ordering, blowUp=False): |
| 53 | if not blowUp: |
| 54 | ordering.append('cleanup_good') |
| 55 | else: |
| 56 | ordering.append('cleanup_exc') |
| 57 | raise CustomError('CleanUpExc') |
| 58 | |
| 59 | |
| 60 | class TestCM: |
nothing calls this directly
no test coverage detected
searching dependent graphs…