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
|
|
|
|
|
|
|
|
|
|
|
|
def test_main():
|
2010-01-08 15:04:16 -04:00
|
|
|
test.test_support.run_unittest(json.tests.test_suite())
|
2008-05-05 17:21:38 -03:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
test_main()
|