diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-05-10 15:04:49 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-02-07 09:25:51 +0100 |
commit | 352a51e8313d05c4701f468a79540a2410c77b23 (patch) | |
tree | 43f1c54f9c08c8f91c6568f7cccb27c6f4b55ae0 /test/functional/api/vim_spec.lua | |
parent | 538361955d123d9c93387f7597303c0ef59c6825 (diff) | |
download | rneovim-352a51e8313d05c4701f468a79540a2410c77b23.tar.gz rneovim-352a51e8313d05c4701f468a79540a2410c77b23.tar.bz2 rneovim-352a51e8313d05c4701f468a79540a2410c77b23.zip |
test: :! print binary data, control chars
closes #5442
closes #4142
ref #6618
ref #4376
ref #7844
ref #2958
ref #4338
Diffstat (limited to 'test/functional/api/vim_spec.lua')
-rw-r--r-- | test/functional/api/vim_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/api/vim_spec.lua b/test/functional/api/vim_spec.lua index 0a0cb2e91c..1faed4e9b1 100644 --- a/test/functional/api/vim_spec.lua +++ b/test/functional/api/vim_spec.lua @@ -11,11 +11,11 @@ local funcs = helpers.funcs local request = helpers.request local meth_pcall = helpers.meth_pcall local command = helpers.command +local iswin = helpers.iswin local intchar2lua = global_helpers.intchar2lua local format_string = global_helpers.format_string local mergedicts_copy = global_helpers.mergedicts_copy -local uname = global_helpers.uname describe('api', function() before_each(clear) @@ -101,7 +101,7 @@ describe('api', function() end) it('returns shell |:!| output', function() - local win_lf = (uname() == 'Windows' and '\r') or '' + local win_lf = iswin() and '\r' or '' eq(':!echo foo\r\n\nfoo'..win_lf..'\n', nvim('command_output', [[!echo foo]])) end) |