]> granicus.if.org Git - python/commit
The email package's tests live much better in a subpackage
authorBarry Warsaw <barry@python.org>
Fri, 19 Jul 2002 22:31:10 +0000 (22:31 +0000)
committerBarry Warsaw <barry@python.org>
Fri, 19 Jul 2002 22:31:10 +0000 (22:31 +0000)
commit190390b02649b164489aaca1064bb33af2c9ee4f
treeb72bc8e4e764f0a4c0be841eee81473a493ef862
parent629038093cae7d74a5356187d0a30153d5c2c88c
The email package's tests live much better in a subpackage
(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.
Lib/email/test/__init__.py [new file with mode: 0644]
Lib/email/test/test_email.py [new file with mode: 0644]
Lib/email/test/test_email_codecs.py [new file with mode: 0644]
Lib/email/test/test_email_torture.py [new file with mode: 0644]
Lib/test/test_email.py
Lib/test/test_email_codecs.py