Change the PyUnit-based tests to use the test_main() approach. This

allows using the tests with unittest.py as a script.  The tests will
still run when run as a script themselves.
This commit is contained in:
Fred Drake 2001-09-20 21:33:42 +00:00
parent 6f7993765a
commit 2e2be3760c
34 changed files with 229 additions and 39 deletions

View file

@ -353,5 +353,13 @@ class IllegalSyntaxTestCase(unittest.TestCase):
self.check_bad_tree(tree, "a $= b")
test_support.run_unittest(RoundtripLegalSyntaxTestCase)
test_support.run_unittest(IllegalSyntaxTestCase)
def test_main():
loader = unittest.TestLoader()
suite = unittest.TestSuite()
suite.addTest(loader.loadTestsFromTestCase(RoundtripLegalSyntaxTestCase))
suite.addTest(loader.loadTestsFromTestCase(IllegalSyntaxTestCase))
test_support.run_suite(suite)
if __name__ == "__main__":
test_main()