diff options
author | stepshal <nessento@openmailbox.org> | 2016-07-12 22:00:43 +0700 |
---|---|---|
committer | stepshal <nessento@openmailbox.org> | 2016-07-13 06:00:42 +0700 |
commit | 6d11e88f938f09ef16db4c6064b6e74acba4db1d (patch) | |
tree | 18b8d914a2c4fc9f9e00d75a5b30330bb0d1942a /setuptools/tests/test_easy_install.py | |
parent | e3e21fd3d608d72ebe1ba2e4d2b3a59fbca76554 (diff) | |
download | external_python_setuptools-6d11e88f938f09ef16db4c6064b6e74acba4db1d.tar.gz external_python_setuptools-6d11e88f938f09ef16db4c6064b6e74acba4db1d.tar.bz2 external_python_setuptools-6d11e88f938f09ef16db4c6064b6e74acba4db1d.zip |
Fix quantity of blank lines after code object.
Diffstat (limited to 'setuptools/tests/test_easy_install.py')
-rw-r--r-- | setuptools/tests/test_easy_install.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index fd06b6ef..894c4fd8 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -41,6 +41,7 @@ from .textwrap import DALS class FakeDist(object): + def get_entry_map(self, group): if group != 'console_scripts': return {} @@ -55,6 +56,7 @@ SETUP_PY = DALS(""" setup(name='foo') """) + class TestEasyInstallTest: def test_install_site_py(self, tmpdir): @@ -133,6 +135,7 @@ 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 @@ -266,6 +269,7 @@ def distutils_package(): class TestDistutilsPackage: + def test_bdist_egg_available_on_distutils_pkg(self, distutils_package): run_setup('setup.py', ['bdist_egg']) @@ -557,6 +561,7 @@ class TestScriptHeader: class TestCommandSpec: + def test_custom_launch_command(self): """ Show how a custom CommandSpec could be used to specify a #! executable @@ -601,6 +606,7 @@ class TestCommandSpec: class TestWindowsScriptWriter: + def test_header(self): hdr = ei.WindowsScriptWriter.get_script_header('') assert hdr.startswith('#!') |