blob: 17e1daf3607484d793bf8d2ba966a8073337dbff [file] [log] [blame]
Christian Heimes90540002008-05-08 14:29:10 +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
Benjamin Petersonee8712c2008-05-20 21:35:26 +00009import test.support
Christian Heimes90540002008-05-08 14:29:10 +000010
11
12def test_main():
Benjamin Petersonee8712c2008-05-20 21:35:26 +000013 test.support.run_unittest(json.tests.test_suite())
14 test.support.run_doctest(json)
Christian Heimes90540002008-05-08 14:29:10 +000015
16
17if __name__ == "__main__":
18 test_main()