blob: 736c393062dca814d1d835d1a504aae1153c48ff [file] [log] [blame]
Barry Warsawc5a6a302007-08-31 11:19:21 +00001# Copyright (C) 2001-2007 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 import test_support
8
9def test_main():
10 test_support.run_unittest(suite())
11
12if __name__ == '__main__':
13 test_main()