Barry Warsaw | c5a6a30 | 2007-08-31 11:19:21 +0000 | [diff] [blame] | 1 | # Copyright (C) 2001-2007 Python Software Foundation |
2 | # email package unit tests | ||||
3 | |||||
4 | import unittest | ||||
5 | # The specific tests now live in Lib/email/test | ||||
6 | from email.test.test_email import suite | ||||
7 | from test import test_support | ||||
8 | |||||
9 | def test_main(): | ||||
10 | test_support.run_unittest(suite()) | ||||
11 | |||||
12 | if __name__ == '__main__': | ||||
13 | test_main() |