0001 # Copyright (C) 2001,2002 Python Software Foundation 0002 # email package unit tests 0003 0004 import unittest 0005 # The specific tests now live in Lib/email/test 0006 from email.test.test_email import suite 0007 from test.test_support import run_suite 0008 0009 def test_main(): 0010 run_suite(suite()) 0011 0012 if __name__ == '__main__': 0013 test_main() 0014
Generated by PyXR 0.9.4