[Python-checkins] python/dist/src/Lib/test test_distutils.py, NONE, 1.1

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Tue Jun 15 11:49:48 EDT 2004


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15896/test

Added Files:
	test_distutils.py 
Log Message:
One unit test for distutils is not much, but is more than we had yesterday.
We need to write more; hopefully the barrier is a little lower now.


--- NEW 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.test_support


def test_main():
    test.test_support.run_unittest(distutils.tests.test_suite())


if __name__ == "__main__":
    test_main()




More information about the Python-checkins mailing list