summaryrefslogtreecommitdiff
path: root/distutils2/tests/test_ccompiler.py
blob: 91a9c5f36122207f428a25e9379d40091741e9d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""Tests for distutils.compiler.ccompiler."""

from distutils2.compiler import ccompiler
from distutils2.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")