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-04-15 22:14:06 +00:00
|
|
|
|
|
|
|
|
|
|
2001-10-04 17:58:50 +00:00
|
|
|
|
|
2001-12-07 21:07:08 +00:00
|
|
|
|
if __name__ == '__main__':
|
2002-04-10 21:01:31 +00:00
|
|
|
|
unittest.main(defaultTest='suite')
|