blob: 41ff8974fc790950e33babe78a037cee4762b1b4 [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
Alexander Belopolskyff27ee02010-11-30 03:03:30 +00008from test import json_tests
Benjamin Petersonee8712c2008-05-20 21:35:26 +00009import test.support
Christian Heimes90540002008-05-08 14:29:10 +000010
11
12def test_main():
Alexander Belopolskyff27ee02010-11-30 03:03:30 +000013 test.support.run_unittest(json_tests.test_suite())
Christian Heimes90540002008-05-08 14:29:10 +000014
15
16if __name__ == "__main__":
17 test_main()