summaryrefslogtreecommitdiffstats
path: root/Lib/test/test___all__.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-09-16 04:37:39 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-09-16 04:37:39 (GMT)
commit2d72b5d70723cb13eb0ad65b6deaf2a99094ac57 (patch)
treef94ad4be8bf0882b91e76d769f9e2e814edee9b1 /Lib/test/test___all__.py
parentcc1798e0c00735ed1dcee8b5f71d94377b501105 (diff)
downloadcpython-2d72b5d70723cb13eb0ad65b6deaf2a99094ac57.zip
cpython-2d72b5d70723cb13eb0ad65b6deaf2a99094ac57.tar.gz
cpython-2d72b5d70723cb13eb0ad65b6deaf2a99094ac57.tar.bz2
Test __all__ for unittest.py
Diffstat (limited to 'Lib/test/test___all__.py')
-rw-r--r--Lib/test/test___all__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test___all__.py b/Lib/test/test___all__.py
index 8e2fd46..6643a19 100644
--- a/Lib/test/test___all__.py
+++ b/Lib/test/test___all__.py
@@ -59,7 +59,7 @@ class AllTest(unittest.TestCase):
self.check_all("ConfigParser")
self.check_all("Cookie")
self.check_all("MimeWriter")
- self.check_all("Queue")
+ self.check_all("Queue")
self.check_all("SimpleHTTPServer")
self.check_all("SocketServer")
self.check_all("StringIO")
@@ -174,6 +174,7 @@ class AllTest(unittest.TestCase):
self.check_all("tokenize")
self.check_all("traceback")
self.check_all("tty")
+ self.check_all("unittest")
self.check_all("urllib")
self.check_all("urlparse")
self.check_all("uu")