Closedown

This commit is contained in:
2019-12-11 10:53:29 +01:00
parent 6f88e5723e
commit 5f102cca8b

View File

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