aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests/test_develop.py
diff options
context:
space:
mode:
authortarek <none@none>2009-10-27 16:23:23 +0100
committertarek <none@none>2009-10-27 16:23:23 +0100
commita5c7e0b5256ce53c49dabfe709b37f9644630b96 (patch)
tree6c7e66932a27d46aeebe8039bb8ac2de686c32e4 /setuptools/tests/test_develop.py
parentd22b358d445d2634e6f502092a2b7ea3dcbcb8d6 (diff)
downloadexternal_python_setuptools-a5c7e0b5256ce53c49dabfe709b37f9644630b96.tar.gz
external_python_setuptools-a5c7e0b5256ce53c49dabfe709b37f9644630b96.tar.bz2
external_python_setuptools-a5c7e0b5256ce53c49dabfe709b37f9644630b96.zip
make sure USER_SITE is listed as a sitedir in easy_install
--HG-- branch : distribute extra : rebase_source : f632d56d77b31a6b4f2183728e770d00005b0060
Diffstat (limited to 'setuptools/tests/test_develop.py')
-rw-r--r--setuptools/tests/test_develop.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/tests/test_develop.py b/setuptools/tests/test_develop.py
index ff12d345..85a6c337 100644
--- a/setuptools/tests/test_develop.py
+++ b/setuptools/tests/test_develop.py
@@ -59,5 +59,6 @@ class TestDevelopTest(unittest.TestCase):
# let's see if we got our egg link at the right place
content = os.listdir(site.USER_SITE)
- self.assertEquals(content, ['UNKNOWN.egg-link'])
+ content.sort()
+ self.assertEquals(content, ['UNKNOWN.egg-link', 'easy-install.pth'])