diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-18 11:11:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-18 11:11:59 -0400 |
commit | 7d984bbdc111fcdfef816265e159a3054dbee132 (patch) | |
tree | 3a25ce5765a8c9ae633a3eaeec1ce88f7b382e21 /setuptools/tests/test_easy_install.py | |
parent | f774a0be095c3873c2881d393605fefa5ca0d0d6 (diff) | |
parent | 31bd37c6ac8de9e8c1bacebc2d8e1215df91eb96 (diff) | |
download | external_python_setuptools-7d984bbdc111fcdfef816265e159a3054dbee132.tar.gz external_python_setuptools-7d984bbdc111fcdfef816265e159a3054dbee132.tar.bz2 external_python_setuptools-7d984bbdc111fcdfef816265e159a3054dbee132.zip |
Merge pull request #820 from stepshal/blank
Fix quantity of blank lines.
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('#!') |