diff --git a/lib/spack/spack/test/util/editor.py b/lib/spack/spack/test/util/editor.py index e7c8bf23643..54b1c251fe1 100644 --- a/lib/spack/spack/test/util/editor.py +++ b/lib/spack/spack/test/util/editor.py @@ -132,3 +132,17 @@ def assert_exec(exe, args): assert args == [vim_exe, '/path/to/file'] ed.editor('/path/to/file', _exec_func=assert_exec) + + +def test_no_editor(): + if 'VISUAL' in os.environ: + del os.environ['VISUAL'] + if 'EDITOR' in os.environ: + del os.environ['EDITOR'] + os.environ['PATH'] = '' + + def assert_exec(exe, args): + assert False + + with pytest.raises(EnvironmentError, match=r'No text editor found.*'): + ed.editor('/path/to/file', _exec_func=assert_exec) diff --git a/lib/spack/spack/util/editor.py b/lib/spack/spack/util/editor.py index e3f740adac4..58198907af4 100644 --- a/lib/spack/spack/util/editor.py +++ b/lib/spack/spack/util/editor.py @@ -122,7 +122,7 @@ def try_env_var(var): # trying them all -- if we get here and one fails, something is # probably much more deeply wrong with the environment. exe = which_string(*_default_editors) - if try_exec(exe, [exe] + list(args)): + if exe and try_exec(exe, [exe] + list(args)): return # Fail if nothing could be found