2002-01-27 06:48:47 +00:00
|
|
|
# Copyright (C) 2001,2002 Python Software Foundation
|
2001-09-23 03:18:13 +00:00
|
|
|
# email package unit tests
|
|
|
|
|
2002-07-19 22:44:23 +00:00
|
|
|
import unittest
|
2002-07-19 22:31:10 +00:00
|
|
|
# The specific tests now live in Lib/email/test
|
2002-07-19 22:44:23 +00:00
|
|
|
from email.test.test_email import suite
|
2002-10-06 14:37:11 +00:00
|
|
|
from test.test_support import run_suite
|
2002-04-15 22:14:06 +00:00
|
|
|
|
2002-10-06 14:37:11 +00:00
|
|
|
def test_main():
|
|
|
|
run_suite(suite())
|
2002-04-15 22:14:06 +00:00
|
|
|
|
2001-12-07 21:07:08 +00:00
|
|
|
if __name__ == '__main__':
|
2002-10-06 14:37:11 +00:00
|
|
|
test_main()
|