summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2004-06-08 18:25:48 (GMT)
committerBrett Cannon <bcannon@gmail.com>2004-06-08 18:25:48 (GMT)
commit6ccc9a99dfbb2575daa8e01a8e8e3531b61a9d60 (patch)
tree9b71f56af31011b651556015c6f6305f1dfa9626 /Lib
parent7f35404b7b90f1d23e7b7ca76af2d332d9826cd6 (diff)
downloadcpython-6ccc9a99dfbb2575daa8e01a8e8e3531b61a9d60.zip
cpython-6ccc9a99dfbb2575daa8e01a8e8e3531b61a9d60.tar.gz
cpython-6ccc9a99dfbb2575daa8e01a8e8e3531b61a9d60.tar.bz2
Removed test_sitepackages test. Skip discovered that it only passed if Python
had already been installed previously.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_site.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py
index ee15b1e..eb9d4a3 100644
--- a/Lib/test/test_site.py
+++ b/Lib/test/test_site.py
@@ -141,14 +141,6 @@ class ImportSideEffectTests(unittest.TestCase):
# XXX: implement
pass
- def test_sitepackages(self):
- # There should be a path that ends in site-packages
- for path in sys.path:
- if path.endswith("site-packages"):
- break
- else:
- self.fail("'site-packages' directory missing'")
-
def test_setting_quit(self):
# 'quit' and 'exit' should be injected into __builtin__
self.failUnless(hasattr(__builtin__, "quit"))