mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 21:21:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			584 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			584 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import os
 | |
| import sys
 | |
| import unittest
 | |
| 
 | |
| 
 | |
| here = os.path.dirname(__file__)
 | |
| loader = unittest.defaultTestLoader
 | |
| 
 | |
| def suite():
 | |
|     suite = unittest.TestSuite()
 | |
|     for fn in os.listdir(here):
 | |
|         if fn.startswith("test") and fn.endswith(".py"):
 | |
|             modname = "unittest.test." + fn[:-3]
 | |
|             __import__(modname)
 | |
|             module = sys.modules[modname]
 | |
|             suite.addTest(loader.loadTestsFromModule(module))
 | |
|     suite.addTest(loader.loadTestsFromName('unittest.test.testmock'))
 | |
|     return suite
 | |
| 
 | |
| 
 | |
| if __name__ == "__main__":
 | |
|     unittest.main(defaultTest="suite")
 | 
