source: vendor/python/2.5/Lib/test/test_email.py

Last change on this file was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 310 bytes
Line 
1# Copyright (C) 2001,2002 Python Software Foundation
2# email package unit tests
3
4import unittest
5# The specific tests now live in Lib/email/test
6from email.test.test_email import suite
7from test.test_support import run_suite
8
9def test_main():
10 run_suite(suite())
11
12if __name__ == '__main__':
13 test_main()
Note: See TracBrowser for help on using the repository browser.