Closedown

This commit is contained in:
2019-12-11 11:15:19 +01:00
parent a2e1eb6868
commit 108fd6c976

View File

@@ -509,6 +509,8 @@ class TestLoader:
def loadTestsFromModule(self, module):
"""Return a suite of all tests cases contained in the given module"""
tests = []
print module
print dir(module)
for name in dir(module):
obj = getattr(module, name)
if (isinstance(obj, (type, types.ClassType)) and