source: python/trunk/Lib/test/test_json.py

Last change on this file was 2, checked in by Yuri Dario, 15 years ago

Initial import for vendor code.

  • Property svn:eol-style set to native
File size: 327 bytes
Line 
1"""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
8import json.tests
9import test.test_support
10
11
12def test_main():
13 test.test_support.run_unittest(json.tests.test_suite())
14
15
16if __name__ == "__main__":
17 test_main()
Note: See TracBrowser for help on using the repository browser.