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():
|
2010-03-27 10:42:34 -03:00
|
|
|
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
|
|
|
|
2004-08-28 12:22:12 -03:00
|
|
|
|
2007-03-07 05:09:40 -04:00
|
|
|
if __name__ == "__main__":
|
2007-03-12 15:07:52 -03:00
|
|
|
test_main()
|