Python code coverage for Lib/packaging/tests/test_ccompiler.py
| # | count | content |
|---|---|---|
| 1 | n/a | """Tests for distutils.compiler.ccompiler.""" |
| 2 | n/a | |
| 3 | n/a | from packaging.compiler import ccompiler |
| 4 | n/a | from packaging.tests import unittest, support |
| 5 | n/a | |
| 6 | n/a | |
| 7 | n/a | class CCompilerTestCase(unittest.TestCase): |
| 8 | n/a | pass # XXX need some tests on CCompiler |
| 9 | n/a | |
| 10 | n/a | |
| 11 | n/a | def test_suite(): |
| 12 | n/a | return unittest.makeSuite(CCompilerTestCase) |
| 13 | n/a | |
| 14 | n/a | if __name__ == "__main__": |
| 15 | n/a | unittest.main(defaultTest="test_suite") |
