diff options
Diffstat (limited to 'setuptools/tests/test_easy_install.py')
-rw-r--r-- | setuptools/tests/test_easy_install.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index 82e1d7e8..209e6b78 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -1,5 +1,4 @@ # -*- coding: utf-8 -*- - """Easy install Tests """ from __future__ import absolute_import @@ -42,7 +41,6 @@ from .textwrap import DALS class FakeDist(object): - def get_entry_map(self, group): if group != 'console_scripts': return {} @@ -60,7 +58,6 @@ SETUP_PY = DALS(""" class TestEasyInstallTest: - def test_install_site_py(self, tmpdir): dist = Distribution() cmd = ei.easy_install(dist) @@ -194,7 +191,6 @@ class TestEasyInstallTest: class TestPTHFileWriter: - def test_add_from_cwd_site_sets_dirty(self): '''a pth file manager should set dirty if a distribution is in site but also the cwd @@ -328,13 +324,11 @@ def distutils_package(): class TestDistutilsPackage: - def test_bdist_egg_available_on_distutils_pkg(self, distutils_package): run_setup('setup.py', ['bdist_egg']) class TestSetupRequires: - def test_setup_requires_honors_fetch_params(self): """ When easy_install installs a source distribution which specifies @@ -623,7 +617,6 @@ class TestScriptHeader: class TestCommandSpec: - def test_custom_launch_command(self): """ Show how a custom CommandSpec could be used to specify a #! executable @@ -659,7 +652,6 @@ class TestCommandSpec: class TestWindowsScriptWriter: - def test_header(self): hdr = ei.WindowsScriptWriter.get_script_header('') assert hdr.startswith('#!') |