MCPcopy Index your code
hub / github.com/python/cpython / setUpModule

Method setUpModule

Lib/test/test_unittest/test_runner.py:714–718  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

712 class Module(object):
713 @staticmethod
714 def setUpModule():
715 ordering.append('setUpModule')
716 unittest.addModuleCleanup(cleanup, ordering)
717 if blowUp:
718 raise CustomError('setUpModule Exc')
719 @staticmethod
720 def tearDownModule():
721 ordering.append('tearDownModule')

Callers

nothing calls this directly

Calls 2

CustomErrorClass · 0.70
appendMethod · 0.45

Tested by

no test coverage detected