make file closing more robust
[python/dscho.git] / Lib / test / test_distutils.py
blob94e59bc58acb2bc2251560ef57b6d87ec283a825
1 """Tests for distutils.
3 The tests for distutils are defined in the distutils.tests package;
4 the test_suite() function there returns a test suite that's ready to
5 be run.
6 """
8 import distutils.tests
9 import test.support
12 def test_main():
13 test.support.run_unittest(distutils.tests.test_suite())
16 if __name__ == "__main__":
17 test_main()