Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 2142ee8718d9eb2f055c07efcf66284512f7fa61 authored by Georg Brandl on 23 February 2012, 20:19:25 UTC
Update copyright year.
Tip revision: 2142ee8
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