You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
286 B
Python
17 lines
286 B
Python
4 years ago
|
import unittest.test
|
||
|
|
||
|
from test import support
|
||
|
|
||
|
|
||
|
def test_main():
|
||
|
# used by regrtest
|
||
|
support.run_unittest(unittest.test.suite())
|
||
|
support.reap_children()
|
||
|
|
||
|
def load_tests(*_):
|
||
|
# used by unittest
|
||
|
return unittest.test.suite()
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
test_main()
|