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