home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 July / maximum-cd-2011-07.iso / DiscContents / LibO_3.3.2_Win_x86_install_multi.exe / libreoffice1.cab / test_distutils.py < prev    next >
Encoding:
Python Source  |  2011-03-15  |  352 b   |  18 lines

  1. """Tests for distutils.
  2.  
  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. """
  7.  
  8. import distutils.tests
  9. import test.test_support
  10.  
  11.  
  12. def test_main():
  13.     test.test_support.run_unittest(distutils.tests.test_suite())
  14.  
  15.  
  16. if __name__ == "__main__":
  17.     test_main()
  18.