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
move sections
[python/dscho.git]
/
Lib
/
test
/
test_unittest.py
blob
86a998b6f4441ee371ea989d129d6b6b01cd2545
1
import
unittest
.
test
2
3
from
test
import
test_support
4
5
6
def
test_main
():
7
test_support
.
run_unittest
(
unittest
.
test
.
suite
())
8
test_support
.
reap_children
()
9
10
11
if
__name__
==
"__main__"
:
12
test_main
()