Commit 91cb8c7f authored by Tarek Ziade's avatar Tarek Ziade

added a test for #143 now that I understand it. fixes #143

--HG--
branch : distribute
extra : rebase_source : e81153c1b0c81fe7783507553caa66c217e38ed5
parent 5c7f1d08
...@@ -205,3 +205,39 @@ class TestUserInstallTest(unittest.TestCase): ...@@ -205,3 +205,39 @@ class TestUserInstallTest(unittest.TestCase):
cmd.args = ['py'] cmd.args = ['py']
cmd.initialize_options() cmd.initialize_options()
self.assertFalse(cmd.user, 'NOT user should be implied') self.assertFalse(cmd.user, 'NOT user should be implied')
def test_local_index(self):
# make sure the local index is used
# when easy_install looks for installed
# packages
new_location = tempfile.mkdtemp()
target = tempfile.mkdtemp()
egg_file = os.path.join(new_location, 'foo-1.0.egg-info')
f = open(egg_file, 'w')
try:
f.write('Name: foo\n')
except:
f.close()
sys.path.append(target)
old_ppath = os.environ.get('PYTHONPATH')
os.environ['PYTHONPATH'] = ':'.join(sys.path)
try:
dist = Distribution()
dist.script_name = 'setup.py'
cmd = easy_install(dist)
cmd.install_dir = target
cmd.args = ['foo']
cmd.ensure_finalized()
cmd.local_index.scan([new_location])
res = cmd.easy_install('foo')
self.assertEquals(res.location, new_location)
finally:
sys.path.remove(target)
shutil.rmtree(new_location)
shutil.rmtree(target)
if old_ppath is not None:
os.environ['PYTHONPATH'] = old_ppath
else:
del os.environ['PYTHONPATH']
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment