Last change
on this file was 391, checked in by dmik, 11 years ago |
python: Merge vendor 2.7.6 to trunk.
|
-
Property svn:eol-style
set to
native
|
File size:
398 bytes
|
Line | |
---|
1 | # Copyright (C) 2001,2002 Python Software Foundation
|
---|
2 | # email package unit tests
|
---|
3 |
|
---|
4 | # The specific tests now live in Lib/email/test
|
---|
5 | from email.test.test_email import suite
|
---|
6 | from email.test.test_email_renamed import suite as suite2
|
---|
7 | from test import test_support
|
---|
8 |
|
---|
9 | def test_main():
|
---|
10 | test_support.run_unittest(suite())
|
---|
11 | test_support.run_unittest(suite2())
|
---|
12 |
|
---|
13 | if __name__ == '__main__':
|
---|
14 | test_main()
|
---|
Note:
See
TracBrowser
for help on using the repository browser.