mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 11:49:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			366 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			366 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Tests for distutils.compiler.ccompiler."""
 | 
						|
 | 
						|
from packaging.compiler import ccompiler
 | 
						|
from packaging.tests import unittest, support
 | 
						|
 | 
						|
 | 
						|
class CCompilerTestCase(unittest.TestCase):
 | 
						|
    pass  # XXX need some tests on CCompiler
 | 
						|
 | 
						|
 | 
						|
def test_suite():
 | 
						|
    return unittest.makeSuite(CCompilerTestCase)
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    unittest.main(defaultTest="test_suite")
 |