2007-08-31 08:19:21 -03:00
|
|
|
# Copyright (C) 2001-2007 Python Software Foundation
|
|
|
|
# email package unit tests
|
|
|
|
|
|
|
|
# The specific tests now live in Lib/email/test
|
|
|
|
from email.test.test_email import suite
|
2008-05-20 18:35:26 -03:00
|
|
|
from test import support
|
2007-08-31 08:19:21 -03:00
|
|
|
|
|
|
|
def test_main():
|
2008-05-20 18:35:26 -03:00
|
|
|
support.run_unittest(suite())
|
2007-08-31 08:19:21 -03:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
test_main()
|