Staging
v0.5.1
https://github.com/python/cpython
Revision 6ddd92730b05a9dc41bd05372b779977f50cdc6d authored by Donald Stufft on 09 September 2016, 16:16:12 UTC, committed by Donald Stufft on 09 September 2016, 16:16:12 UTC
1 parent 77ba596
Raw File
Tip revision: 6ddd92730b05a9dc41bd05372b779977f50cdc6d authored by Donald Stufft on 09 September 2016, 16:16:12 UTC
Upgrade setuptools to 27.1.2
Tip revision: 6ddd927
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.
"""

import json.tests
import test.test_support


def test_main():
    test.test_support.run_unittest(json.tests.test_suite())


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