summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-05-20 19:38:05 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2015-05-20 19:38:05 +0300
commiteb132bd5cbe6fe4d98abe05a508a6bf0a2d15b0c (patch)
tree98a513b52fe2f2bd68b5912f545d512b42c707a9
parent9f32c8f42790bb31dc3ca0d5de85755678c24181 (diff)
parent1fde7ef9c78d9936a7a459c6e635abfb2bbb9b11 (diff)
downloadcpython-eb132bd5cbe6fe4d98abe05a508a6bf0a2d15b0c.tar.gz
Issue 24215: Added tests for more builtin types in test_pprint.
Made test_pprint and test_trace discoverable.
-rw-r--r--Lib/test/test_pprint.py17
-rw-r--r--Lib/test/test_trace.py12
2 files changed, 12 insertions, 17 deletions
diff --git a/Lib/test/test_pprint.py b/Lib/test/test_pprint.py
index 9e5309cc41..357c5cf0a9 100644
--- a/Lib/test/test_pprint.py
+++ b/Lib/test/test_pprint.py
@@ -91,7 +91,8 @@ class QueryTestCase(unittest.TestCase):
def test_basic(self):
# Verify .isrecursive() and .isreadable() w/o recursion
pp = pprint.PrettyPrinter()
- for safe in (2, 2.0, 2j, "abc", [3], (2,2), {3: 3}, "yaddayadda",
+ for safe in (2, 2.0, 2j, "abc", [3], (2,2), {3: 3}, b"def",
+ bytearray(b"ghi"), True, False, None, ...,
self.a, self.b):
# module-level convenience functions
self.assertFalse(pprint.isrecursive(safe),
@@ -161,21 +162,23 @@ class QueryTestCase(unittest.TestCase):
# it sorted a dict display if and only if the display required
# multiple lines. For that reason, dicts with more than one element
# aren't tested here.
- for simple in (0, 0, 0+0j, 0.0, "", b"",
+ for simple in (0, 0, 0+0j, 0.0, "", b"", bytearray(),
(), tuple2(), tuple3(),
[], list2(), list3(),
set(), set2(), set3(),
frozenset(), frozenset2(), frozenset3(),
{}, dict2(), dict3(),
self.assertTrue, pprint,
- -6, -6, -6-6j, -1.5, "x", b"x", (3,), [3], {3: 6},
+ -6, -6, -6-6j, -1.5, "x", b"x", bytearray(b"x"),
+ (3,), [3], {3: 6},
(1,2), [3,4], {5: 6},
tuple2((1,2)), tuple3((1,2)), tuple3(range(100)),
[3,4], list2([3,4]), list3([3,4]), list3(range(100)),
set({7}), set2({7}), set3({7}),
frozenset({8}), frozenset2({8}), frozenset3({8}),
dict2({5: 6}), dict3({5: 6}),
- range(10, -11, -1)
+ range(10, -11, -1),
+ True, False, None, ...,
):
native = repr(simple)
self.assertEqual(pprint.pformat(simple), native)
@@ -1005,9 +1008,5 @@ class DottedPrettyPrinter(pprint.PrettyPrinter):
self, object, context, maxlevels, level)
-def test_main():
- test.support.run_unittest(QueryTestCase)
-
-
if __name__ == "__main__":
- test_main()
+ unittest.main()
diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py
index 2f2c584a5c..03dff8432d 100644
--- a/Lib/test/test_trace.py
+++ b/Lib/test/test_trace.py
@@ -1,8 +1,7 @@
import os
import io
import sys
-from test.support import (run_unittest, TESTFN, rmtree, unlink,
- captured_stdout)
+from test.support import TESTFN, rmtree, unlink, captured_stdout
import unittest
import trace
@@ -301,7 +300,8 @@ class TestCoverage(unittest.TestCase):
unlink(TESTFN)
def _coverage(self, tracer,
- cmd='from test import test_pprint; test_pprint.test_main()'):
+ cmd='import test.support, test.test_pprint;'
+ 'test.support.run_unittest(test.test_pprint.QueryTestCase)'):
tracer.run(cmd)
r = tracer.results()
r.write_results(show_missing=True, summary=True, coverdir=TESTFN)
@@ -411,9 +411,5 @@ class TestDeprecatedMethods(unittest.TestCase):
trace.find_executable_linenos(fd.name)
-def test_main():
- run_unittest(__name__)
-
-
if __name__ == '__main__':
- test_main()
+ unittest.main()