diff options
author | R David Murray <rdmurray@bitdance.com> | 2011-03-21 21:17:06 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2011-03-21 21:17:06 (GMT) |
commit | 9aaba789b38834f40bb833735836a52237323be2 (patch) | |
tree | 0341ba51f5e09149e8f3bfa01b2cb9641c75243a /Lib/test/test_email.py | |
parent | 76a3d73cbd4fffb051f9fbb1a52c4e4815851254 (diff) | |
download | cpython-9aaba789b38834f40bb833735836a52237323be2.zip cpython-9aaba789b38834f40bb833735836a52237323be2.tar.gz cpython-9aaba789b38834f40bb833735836a52237323be2.tar.bz2 |
Correctly move email package tests to Lib/test.
Diffstat (limited to 'Lib/test/test_email.py')
-rw-r--r-- | Lib/test/test_email.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py deleted file mode 100644 index 5eebba5..0000000 --- a/Lib/test/test_email.py +++ /dev/null @@ -1,14 +0,0 @@ -# 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() |