()
| 752 | class Module1(object): |
| 753 | @staticmethod |
| 754 | def setUpModule(): |
| 755 | ordering.append('setUpModule') |
| 756 | unittest.addModuleCleanup(cleanup, ordering) |
| 757 | if blowUp: |
| 758 | raise CustomError() |
| 759 | @staticmethod |
| 760 | def tearDownModule(): |
| 761 | ordering.append('tearDownModule') |
nothing calls this directly
no test coverage detected