From 2e2be3760ccdfd4bdde4afdd66f4078022ba3b61 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Thu, 20 Sep 2001 21:33:42 +0000 Subject: 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. --- Lib/test/test_codeop.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'Lib/test/test_codeop.py') diff --git a/Lib/test/test_codeop.py b/Lib/test/test_codeop.py index 7847fb3eef..fbe4a31853 100644 --- a/Lib/test/test_codeop.py +++ b/Lib/test/test_codeop.py @@ -87,4 +87,10 @@ class CodeopTests(unittest.TestCase): self.assertNotEquals(compile_command("a = 1\n", "abc").co_filename, compile("a = 1\n", "def", 'single').co_filename) -run_unittest(CodeopTests) + +def test_main(): + run_unittest(CodeopTests) + + +if __name__ == "__main__": + test_main() -- cgit v1.2.1