Staging
v0.8.1
Revision bfe36ec1f580248d5e718667c204974275f8974a authored by Georg Brandl on 12 May 2013, 10:28:20 UTC, committed by Georg Brandl on 12 May 2013, 10:28:20 UTC
1 parent c502df4
Raw File
test_email.py
# 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
from email.test.test_email_codecs import suite as codecs_suite
from test import support

def test_main():
    support.run_unittest(suite())
    support.run_unittest(codecs_suite())

if __name__ == '__main__':
    test_main()
back to top