mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 05:31:20 +00:00 
			
		
		
		
	
		
			
	
	
		
			16 lines
		
	
	
	
		
			331 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
	
		
			331 B
		
	
	
	
		
			Python
		
	
	
	
	
	
|   | """Tests for packaging.extension.""" | ||
|  | import os | ||
|  | 
 | ||
|  | from packaging.compiler.extension import Extension | ||
|  | from packaging.tests import unittest | ||
|  | 
 | ||
|  | class ExtensionTestCase(unittest.TestCase): | ||
|  | 
 | ||
|  |     pass | ||
|  | 
 | ||
|  | def test_suite(): | ||
|  |     return unittest.makeSuite(ExtensionTestCase) | ||
|  | 
 | ||
|  | if __name__ == "__main__": | ||
|  |     unittest.main(defaultTest="test_suite") |