diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2019-01-26 20:20:12 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2019-01-26 20:34:00 -0500 |
| commit | 5cd86987530892bfb01f68ad5f1a2b997a3d01e7 (patch) | |
| tree | d4070a1eb25cc8d046122dc585b77cf9f1ab0037 /setuptools/tests/test_install_scripts.py | |
| parent | 050c0cbdd776ebed369de6c6d51bdc88fa16eadf (diff) | |
| download | python-setuptools-git-5cd86987530892bfb01f68ad5f1a2b997a3d01e7.tar.gz | |
Feed the hobgoblins (delint).
Diffstat (limited to 'setuptools/tests/test_install_scripts.py')
| -rw-r--r-- | setuptools/tests/test_install_scripts.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/setuptools/tests/test_install_scripts.py b/setuptools/tests/test_install_scripts.py index 727ad65b..4338c792 100644 --- a/setuptools/tests/test_install_scripts.py +++ b/setuptools/tests/test_install_scripts.py @@ -64,7 +64,8 @@ class TestInstallScripts: @pytest.mark.skipif(sys.platform == 'win32', reason='non-Windows only') def test_executable_with_spaces_escaping_unix(self, tmpdir): """ - Ensure that shebang on Unix is not quoted, even when a value with spaces + Ensure that shebang on Unix is not quoted, even when + a value with spaces is specified using --executable. """ expected = '#!%s\n' % self.unix_spaces_exe @@ -77,7 +78,8 @@ class TestInstallScripts: @pytest.mark.skipif(sys.platform != 'win32', reason='Windows only') def test_executable_arg_escaping_win32(self, tmpdir): """ - Ensure that shebang on Windows is quoted when getting a path with spaces + Ensure that shebang on Windows is quoted when + getting a path with spaces from --executable, that is itself properly quoted. """ expected = '#!"%s"\n' % self.win32_exe |
