blob: 5eebba5590ccdee1b5d11a1ba1eb20d70f9bde24 [file] [log] [blame]
Barry Warsawc5a6a302007-08-31 11:19:21 +00001# Copyright (C) 2001-2007 Python Software Foundation
2# email package unit tests
3
Barry Warsawc5a6a302007-08-31 11:19:21 +00004# The specific tests now live in Lib/email/test
5from email.test.test_email import suite
R David Murray56a9d7e2011-03-15 12:20:02 -04006from email.test.test_email_codecs import suite as codecs_suite
Benjamin Petersonee8712c2008-05-20 21:35:26 +00007from test import support
Barry Warsawc5a6a302007-08-31 11:19:21 +00008
9def test_main():
Benjamin Petersonee8712c2008-05-20 21:35:26 +000010 support.run_unittest(suite())
R David Murray56a9d7e2011-03-15 12:20:02 -040011 support.run_unittest(codecs_suite())
Barry Warsawc5a6a302007-08-31 11:19:21 +000012
13if __name__ == '__main__':
14 test_main()