symbian-qemu-0.9.1-12/python-2.6.1/Lib/test/test_json.py
changeset 1 2fb8b9db1c86
equal deleted inserted replaced
0:ffa851df0825 1:2fb8b9db1c86
       
     1 """Tests for json.
       
     2 
       
     3 The tests for json are defined in the json.tests package;
       
     4 the test_suite() function there returns a test suite that's ready to
       
     5 be run.
       
     6 """
       
     7 
       
     8 import json.tests
       
     9 import test.test_support
       
    10 
       
    11 
       
    12 def test_main():
       
    13     test.test_support.run_unittest(json.tests.test_suite())
       
    14 
       
    15 
       
    16 if __name__ == "__main__":
       
    17     test_main()