You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
366 B

"""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")