mirror of
https://github.com/python/cpython.git
synced 2025-07-13 22:35:18 +00:00

(i.e. email.test), so move the guts of them here from Lib/test. The latter directory will retain stubs to run the email.test tests using Python's standard regression test. test_email_torture.py is a torture tester which will not run under Python's test suite because I don't want to commit megs of data to that project (it will fail cleanly there). When run under the mimelib project it'll stress test the package with megs of message samples collected from various locations in the wild.
10 lines
265 B
Python
10 lines
265 B
Python
# Copyright (C) 2002 Python Software Foundation
|
||
# email package unit tests for (optional) Asian codecs
|
||
|
||
# The specific tests now live in Lib/email/test
|
||
from email.test.test_email_codecs import *
|
||
|
||
|
||
|
||
if __name__ == '__main__':
|
||
unittest.main(defaultTest='suite')
|