blob: ab6e0b0e257b25911d6fbac2f0891beff68af066 [file] [log] [blame]
Barry Warsaw763af412002-01-27 06:48:47 +00001# Copyright (C) 2001,2002 Python Software Foundation
Barry Warsaw41075852001-09-23 03:18:13 +00002# email package unit tests
3
Barry Warsaw190390b2002-07-19 22:31:10 +00004# The specific tests now live in Lib/email/test
Barry Warsawd33d4742002-07-19 22:44:23 +00005from email.test.test_email import suite
R David Murraya5e7f8f2013-02-09 12:53:29 -05006from email.test.test_email_renamed import suite as suite2
Collin Winterc2898c52007-04-25 17:29:52 +00007from test import test_support
Barry Warsawc9ad32c2002-04-15 22:14:06 +00008
Guido van Rossumb03fac22002-10-06 14:37:11 +00009def test_main():
Collin Winterc2898c52007-04-25 17:29:52 +000010 test_support.run_unittest(suite())
R David Murraya5e7f8f2013-02-09 12:53:29 -050011 test_support.run_unittest(suite2())
Barry Warsawc9ad32c2002-04-15 22:14:06 +000012
Guido van Rossum78f0dd32001-12-07 21:07:08 +000013if __name__ == '__main__':
Guido van Rossumb03fac22002-10-06 14:37:11 +000014 test_main()