blob: 7b8f3de8a9814eac127d358812a397c3d9e93337 [file] [log] [blame]
Brett Cannon4b964f92008-05-05 20:21:38 +00001"""Tests for json.
2
3The tests for json are defined in the json.tests package;
4the test_suite() function there returns a test suite that's ready to
5be run.
6"""
7
8import json.tests
9import test.test_support
10
11
12def test_main():
Senthil Kumarance8e33a2010-01-08 19:04:16 +000013 test.test_support.run_unittest(json.tests.test_suite())
Brett Cannon4b964f92008-05-05 20:21:38 +000014
15
16if __name__ == "__main__":
17 test_main()