Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: da71013c117825c6727f9409cf29b902cd308c35 authored by Georg Brandl on 08 May 2011, 07:10:29 UTC
Update suspicious ignore file.
Tip revision: da71013
test_json.py
"""Tests for json.

The tests for json are defined in the json.tests package;
the test_suite() function there returns a test suite that's ready to
be run.
"""

from test import json_tests
import test.support


def test_main():
    test.support.run_unittest(json_tests.test_suite())


if __name__ == "__main__":
    test_main()
back to top