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