2008-05-05 17:21:38 -03:00
|
|
|
"""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
|
2010-01-08 14:41:40 -04:00
|
|
|
import warnings
|
2008-05-05 17:21:38 -03:00
|
|
|
|
|
|
|
|
|
|
|
def test_main():
|
2010-01-08 14:41:40 -04:00
|
|
|
with warnings.catch_warnings():
|
|
|
|
# Silence Py3k warning
|
|
|
|
warnings.filterwarnings("ignore", "comparing unequal types "
|
|
|
|
"not supported", DeprecationWarning)
|
|
|
|
test.test_support.run_unittest(json.tests.test_suite())
|
2008-05-05 17:21:38 -03:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
test_main()
|