cpython/Lib/test/test_unittest.py

13 lines
202 B
Python
Raw Normal View History

2010-03-25 23:56:33 +00:00
import unittest.test
2007-03-12 18:07:52 +00:00
2010-03-26 13:53:32 +00:00
from test import test_support
2007-03-12 18:07:52 +00:00
2010-03-25 23:56:33 +00:00
def test_main():
test_support.run_unittest(unittest.test.suite())
2010-03-25 23:56:33 +00:00
test_support.reap_children()
2007-03-12 18:07:52 +00:00
if __name__ == "__main__":
2007-03-12 18:07:52 +00:00
test_main()