Removed test_sitepackages test. Skip discovered that it only passed if Python

had already been installed previously.
This commit is contained in:
Brett Cannon 2004-06-08 18:25:48 +00:00
parent 7f35404b7b
commit 6ccc9a99df
1 changed files with 0 additions and 8 deletions

View File

@ -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"))