2022-09-17 15:26:13 +03:00
|
|
|
import unittest.test
|
|
|
|
|
|
|
|
from test import support
|
|
|
|
|
|
|
|
|
|
|
|
def load_tests(*_):
|
|
|
|
# used by unittest
|
|
|
|
return unittest.test.suite()
|
|
|
|
|
2022-10-09 16:27:10 +03:00
|
|
|
|
|
|
|
def tearDownModule():
|
|
|
|
support.reap_children()
|
|
|
|
|
|
|
|
|
2022-09-17 15:26:13 +03:00
|
|
|
if __name__ == "__main__":
|
2022-10-09 16:27:10 +03:00
|
|
|
unittest.main()
|