ยปCore Development>Code coverage>Lib/test/test_email.py

Python code coverage for Lib/test/test_email.py

#countcontent
1n/a# Copyright (C) 2001-2007 Python Software Foundation
2n/a# email package unit tests
3n/a
4n/a# The specific tests now live in Lib/email/test
5n/afrom email.test.test_email import suite
6n/afrom test import support
7n/a
8n/adef test_main():
9n/a support.run_unittest(suite())
10n/a
11n/aif __name__ == '__main__':
12n/a test_main()