test_email_renamed.py 308 Bytes
Newer Older
1 2 3 4 5
# Copyright (C) 2001-2006 Python Software Foundation
# email package unit tests

# The specific tests now live in Lib/email/test
from email.test.test_email_renamed import suite
6
from test import test_support
7 8

def test_main():
9
    test_support.run_unittest(suite())
10 11 12

if __name__ == '__main__':
    test_main()