test_email.py 398 B

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