diff options
| author | PJ Eby <distutils-sig@python.org> | 2005-08-06 19:29:49 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2005-08-06 19:29:49 +0000 |
| commit | c37349f549ebf82f548b822b27c2ede9f549c310 (patch) | |
| tree | a1d513446260cf010850a1a1e52a7d1815bb40a2 /setuptools/tests/__init__.py | |
| parent | c436d28b03903cb114da59cf1efe9849087ef48f (diff) | |
| download | python-setuptools-bitbucket-c37349f549ebf82f548b822b27c2ede9f549c310.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.
Diffstat (limited to 'setuptools/tests/__init__.py')
| -rw-r--r-- | setuptools/tests/__init__.py | 41 |
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): |
