2002-04-10 21:01:31 +00:00
|
|
|
# Copyright (C) 2002 Python Software Foundation
|
|
|
|
|
# email package unit tests for (optional) Asian codecs
|
|
|
|
|
|
2002-07-19 22:31:10 +00:00
|
|
|
# The specific tests now live in Lib/email/test
|
2006-07-28 18:31:39 +00:00
|
|
|
from email.test import test_email_codecs
|
|
|
|
|
from email.test import test_email_codecs_renamed
|
|
|
|
|
from test import test_support
|
2002-04-15 22:14:06 +00:00
|
|
|
|
2006-07-28 18:31:39 +00:00
|
|
|
def test_main():
|
|
|
|
|
suite = test_email_codecs.suite()
|
|
|
|
|
suite.addTest(test_email_codecs_renamed.suite())
|
|
|
|
|
test_support.run_suite(suite)
|
2002-04-15 22:14:06 +00:00
|
|
|
|
2002-04-10 21:01:31 +00:00
|
|
|
if __name__ == '__main__':
|
2006-07-28 18:31:39 +00:00
|
|
|
test_main()
|