summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_email_renamed.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2006-03-18 16:17:17 (GMT)
committerBarry Warsaw <barry@python.org>2006-03-18 16:17:17 (GMT)
commite5c5117acfc14ff01d325d1fb2a5a440c124e0d5 (patch)
treebbc21adffcbe58b8fe723761c97b9e855c4d8100 /Lib/test/test_email_renamed.py
parent40ef0067ad5af2458c54cc0316831ddb701ea3fd (diff)
downloadcpython-e5c5117acfc14ff01d325d1fb2a5a440c124e0d5.zip
cpython-e5c5117acfc14ff01d325d1fb2a5a440c124e0d5.tar.gz
cpython-e5c5117acfc14ff01d325d1fb2a5a440c124e0d5.tar.bz2
Shim for test_email_renamed.py tests.
Diffstat (limited to 'Lib/test/test_email_renamed.py')
-rw-r--r--Lib/test/test_email_renamed.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/Lib/test/test_email_renamed.py b/Lib/test/test_email_renamed.py
new file mode 100644
index 0000000..c3af598
--- /dev/null
+++ b/Lib/test/test_email_renamed.py
@@ -0,0 +1,13 @@
+# Copyright (C) 2001-2006 Python Software Foundation
+# email package unit tests
+
+import unittest
+# The specific tests now live in Lib/email/test
+from email.test.test_email_renamed import suite
+from test.test_support import run_suite
+
+def test_main():
+ run_suite(suite())
+
+if __name__ == '__main__':
+ test_main()