Python code coverage for Lib/test/test_distutils.py
# | count | content |
---|---|---|
1 | n/a | """Tests for distutils. |
2 | n/a | |
3 | n/a | The tests for distutils are defined in the distutils.tests package; |
4 | n/a | the test_suite() function there returns a test suite that's ready to |
5 | n/a | be run. |
6 | n/a | """ |
7 | n/a | |
8 | n/a | import distutils.tests |
9 | n/a | import test.support |
10 | n/a | |
11 | n/a | |
12 | n/a | def test_main(): |
13 | n/a | test.support.run_unittest(distutils.tests.test_suite()) |
14 | n/a | test.support.reap_children() |
15 | n/a | |
16 | n/a | |
17 | n/a | if __name__ == "__main__": |
18 | n/a | test_main() |