mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 21:21:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			331 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 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")
 | 
