Make it possible to run this test stand-alone.

This commit is contained in:
Guido van Rossum 2007-10-15 00:25:56 +00:00
parent 7c4c6c5d8a
commit 3b7210d336
1 changed files with 3 additions and 0 deletions

View File

@ -38,3 +38,6 @@ class FrozenTests(unittest.TestCase):
def test_main():
run_unittest(FrozenTests)
if __name__ == "__main__":
test_main()