diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2023-01-02 15:34:14 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2023-01-05 17:10:02 +0100 |
commit | adef308a5925a3b967af3bd7c598074e5b6cae18 (patch) | |
tree | 10bb0dc4b3801eb53b56023542283c20aff7e967 /test/functional/vimscript/system_spec.lua | |
parent | 45549f031ee52a01601c33acc411f3111cfc4e95 (diff) | |
download | rneovim-adef308a5925a3b967af3bd7c598074e5b6cae18.tar.gz rneovim-adef308a5925a3b967af3bd7c598074e5b6cae18.tar.bz2 rneovim-adef308a5925a3b967af3bd7c598074e5b6cae18.zip |
feat(lua): exit 1 on Lua "-l" script error
Diffstat (limited to 'test/functional/vimscript/system_spec.lua')
-rw-r--r-- | test/functional/vimscript/system_spec.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/vimscript/system_spec.lua b/test/functional/vimscript/system_spec.lua index dbf734b51a..f099b4a36e 100644 --- a/test/functional/vimscript/system_spec.lua +++ b/test/functional/vimscript/system_spec.lua @@ -1,3 +1,5 @@ +-- Tests for system() and :! shell. + local helpers = require('test.functional.helpers')(after_each) local assert_alive = helpers.assert_alive |