diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-10-22 07:30:32 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-10-22 07:30:32 -0300 |
commit | 5cd9b6474287650790e97187058c81b176fbc7c9 (patch) | |
tree | 57a419ce9104adf84bd1152a01f9c1f75f4bef85 /test/functional/shell/viml_system_spec.lua | |
parent | 6e268cd0d40a3652a68b486bdbb421d39295ab48 (diff) | |
parent | f7fab4af863839a064a941a555b237b6eb789870 (diff) | |
download | rneovim-5cd9b6474287650790e97187058c81b176fbc7c9.tar.gz rneovim-5cd9b6474287650790e97187058c81b176fbc7c9.tar.bz2 rneovim-5cd9b6474287650790e97187058c81b176fbc7c9.zip |
Merge PR #1316 'Refactor event deferral'
Diffstat (limited to 'test/functional/shell/viml_system_spec.lua')
-rw-r--r-- | test/functional/shell/viml_system_spec.lua | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/functional/shell/viml_system_spec.lua b/test/functional/shell/viml_system_spec.lua index effabe715c..6dde2ef538 100644 --- a/test/functional/shell/viml_system_spec.lua +++ b/test/functional/shell/viml_system_spec.lua @@ -23,6 +23,15 @@ end describe('system()', function() before_each(clear) + it('sets the v:shell_error variable', function() + eval([[system("sh -c 'exit'")]]) + eq(0, eval('v:shell_error')) + eval([[system("sh -c 'exit 1'")]]) + eq(1, eval('v:shell_error')) + eval([[system("sh -c 'exit 5'")]]) + eq(5, eval('v:shell_error')) + end) + describe('passing no input', function() it('returns the program output', function() eq("echoed", eval('system("echo -n echoed")')) @@ -83,6 +92,15 @@ describe('systemlist()', function() -- string. before_each(clear) + it('sets the v:shell_error variable', function() + eval([[systemlist("sh -c 'exit'")]]) + eq(0, eval('v:shell_error')) + eval([[systemlist("sh -c 'exit 1'")]]) + eq(1, eval('v:shell_error')) + eval([[systemlist("sh -c 'exit 5'")]]) + eq(5, eval('v:shell_error')) + end) + describe('passing string with linefeed characters as input', function() it('splits the output on linefeed characters', function() eq({'abc', 'def', 'ghi'}, eval([[systemlist("cat -", "abc\ndef\nghi")]])) |