]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_json.py
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / test / test_json.py
CommitLineData
4710c53d 1"""Tests for json.\r
2\r
3The tests for json are defined in the json.tests package;\r
4the test_suite() function there returns a test suite that's ready to\r
5be run.\r
6"""\r
7\r
8import json.tests\r
9import test.test_support\r
10\r
11\r
12def test_main():\r
13 test.test_support.run_unittest(json.tests.test_suite())\r
14\r
15\r
16if __name__ == "__main__":\r
17 test_main()\r