Commit 85dd199e authored by Jason R. Coombs's avatar Jason R. Coombs

Replace comment with docstring assertion.

parent 52172aa1
...@@ -182,9 +182,10 @@ class TestUserInstallTest: ...@@ -182,9 +182,10 @@ class TestUserInstallTest:
log.info('this should not break') log.info('this should not break')
def test_local_index(self): def test_local_index(self):
# make sure the local index is used """
# when easy_install looks for installed The local index must be used when easy_install locates installed
# packages packages.
"""
new_location = tempfile.mkdtemp() new_location = tempfile.mkdtemp()
target = tempfile.mkdtemp() target = tempfile.mkdtemp()
egg_file = os.path.join(new_location, 'foo-1.0.egg-info') egg_file = os.path.join(new_location, 'foo-1.0.egg-info')
......
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