Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 1 | """Tests for json. |
| 2 | |
| 3 | The tests for json are defined in the json.tests package; |
| 4 | the test_suite() function there returns a test suite that's ready to |
| 5 | be run. |
| 6 | """ |
| 7 | |
| 8 | import json.tests |
| 9 | import test.test_support |
| 10 | |
| 11 | |
| 12 | def test_main(): |
| 13 | test.test_support.run_unittest(json.tests.test_suite()) |
Alexandre Vassalotti | a79e33e | 2008-05-15 22:51:26 +0000 | [diff] [blame] | 14 | test.test_support.run_doctest(json) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 15 | |
| 16 | |
| 17 | if __name__ == "__main__": |
| 18 | test_main() |