mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	 bf1fab4aa0
			
		
	
	
		bf1fab4aa0
		
	
	
	
	
		
			
			svn+ssh://pythondev@svn.python.org/python/trunk ........ r79468 | michael.foord | 2010-03-27 13:42:34 +0000 (Sat, 27 Mar 2010) | 1 line Rename the unittest test_suite function to not clash with a test module name (unittest.test.test_suite is now unambiguous). ........
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			514 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			514 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))
 | |
|     return suite
 | |
| 
 | |
| 
 | |
| if __name__ == "__main__":
 | |
|     unittest.main(defaultTest="suite")
 |