repo.or.cz
/
python
/
dscho.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
This commit was manufactured by cvs2svn to create tag 'r222'.
[python/dscho.git]
/
Lib
/
test
/
test_email.py
blob
26f10a443ad4779f1e37ddeafc5d9cb285d0fafc
1
# Copyright (C) 2001,2002 Python Software Foundation
2
# email package unit tests
3
4
import
unittest
5
# The specific tests now live in Lib/email/test
6
from
email
.
test
.
test_email
import
suite
7
from
test_support
import
run_suite
8
9
def
test_main
():
10
run_suite
(
suite
())
11
12
if
__name__
==
'__main__'
:
13
test_main
()