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_email.py < prev    next >
Encoding:
Python Source  |  2011-03-15  |  300 b   |  13 lines

  1. # Copyright (C) 2001,2002 Python Software Foundation
  2. # email package unit tests
  3.  
  4. # The specific tests now live in Lib/email/test
  5. from email.test.test_email import suite
  6. from test import test_support
  7.  
  8. def test_main():
  9.     test_support.run_unittest(suite())
  10.  
  11. if __name__ == '__main__':
  12.     test_main()
  13.