cpython/Lib/test/test_unittest.py

13 lines
202 B
Python
Raw Normal View History

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