Staging
v0.8.1
Revision fde108ba37b8c10e1b4b8820f2826255eef9d9cd authored by Gregory P. Smith on 30 April 2013, 07:58:24 UTC, committed by Gregory P. Smith on 30 April 2013, 07:58:24 UTC
2 parent s 671905d + cf86d94
Raw File
test_distutils.py
"""Tests for distutils.

The tests for distutils are defined in the distutils.tests package;
the test_suite() function there returns a test suite that's ready to
be run.
"""

import distutils.tests
import test.support


def test_main():
    test.support.run_unittest(distutils.tests.test_suite())
    test.support.reap_children()


if __name__ == "__main__":
    test_main()
back to top