summaryrefslogtreecommitdiff
path: root/setuptools/tests
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-08-06 19:29:49 +0000
committerPJ Eby <distutils-sig@python.org>2005-08-06 19:29:49 +0000
commit8afe820f59c3b63795bd235f2800b0e1329eb7e1 (patch)
treea1d513446260cf010850a1a1e52a7d1815bb40a2 /setuptools/tests
parent8a29467d941a7983d5f6eadc5c0e1624417944b6 (diff)
downloadpython-setuptools-git-8afe820f59c3b63795bd235f2800b0e1329eb7e1.tar.gz
Got rid of the no-longer meaningful "depends" command. Consolidated the
replacement of the "install" command so that installation is always via easy_install, but doesn't use the previous kludgy intereception technique. Allow ``extra_path`` to be set, but ignore it, so that when easy_install wraps a package that uses it, there won't be any confusion as to the desired installation location. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041181
Diffstat (limited to 'setuptools/tests')
-rw-r--r--setuptools/tests/__init__.py41
1 files changed, 0 insertions, 41 deletions
diff --git a/setuptools/tests/__init__.py b/setuptools/tests/__init__.py
index 97be5626..7009b321 100644
--- a/setuptools/tests/__init__.py
+++ b/setuptools/tests/__init__.py
@@ -121,47 +121,6 @@ class DependsTests(TestCase):
- def testDependsCmd(self):
- path = convert_path('foo/bar/baz')
-
- dist = makeSetup(
- script_args=['install','--install-lib',path]
- )
-
- cmd = dist.get_command_obj('depends')
- cmd.ensure_finalized()
-
- self.assertEqual(cmd.temp, dist.get_command_obj('build').build_temp)
- self.assertEqual(cmd.search_path, [path+os.path.sep,path]+sys.path)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
class DistroTests(TestCase):
def setUp(self):