diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2023-01-16 18:38:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-16 18:38:20 -0500 |
commit | 7ebb1cf28f41d073062a4d454b5613d31e5d7518 (patch) | |
tree | 417e251a93a9715324d00cd30a5d75db834a1130 /test/functional/lua/vim_spec.lua | |
parent | da3460562e84dcf608248cc9a5b0eb2341531a0d (diff) | |
parent | 665a7dafaf892b31285f35a43a90fc6e968fd7da (diff) | |
download | rneovim-7ebb1cf28f41d073062a4d454b5613d31e5d7518.tar.gz rneovim-7ebb1cf28f41d073062a4d454b5613d31e5d7518.tar.bz2 rneovim-7ebb1cf28f41d073062a4d454b5613d31e5d7518.zip |
Merge #21844 test: avoid noise in test logs
Diffstat (limited to 'test/functional/lua/vim_spec.lua')
-rw-r--r-- | test/functional/lua/vim_spec.lua | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/test/functional/lua/vim_spec.lua b/test/functional/lua/vim_spec.lua index 90eccc49c8..d90a78c92a 100644 --- a/test/functional/lua/vim_spec.lua +++ b/test/functional/lua/vim_spec.lua @@ -2,6 +2,7 @@ local helpers = require('test.functional.helpers')(after_each) local Screen = require('test.functional.ui.screen') +local nvim_prog = helpers.nvim_prog local funcs = helpers.funcs local meths = helpers.meths local command = helpers.command @@ -22,7 +23,6 @@ local remove_trace = helpers.remove_trace local mkdir_p = helpers.mkdir_p local rmdir = helpers.rmdir local write_file = helpers.write_file -local expect_exit = helpers.expect_exit local poke_eventloop = helpers.poke_eventloop local assert_alive = helpers.assert_alive @@ -2910,9 +2910,14 @@ describe('lua: builtin modules', function() end) - it('does not work when disabled without runtime', function() - clear{args={'--luamod-dev'}, env={VIMRUNTIME='fixtures/a'}} - expect_exit(exec_lua, [[return vim.tbl_count {x=1,y=2}]]) + it('fails when disabled without runtime', function() + clear() + command("let $VIMRUNTIME='fixtures/a'") + -- Use system([nvim,…]) instead of clear() to avoid stderr noise. #21844 + local out = funcs.system({nvim_prog, '--clean', '--luamod-dev', + [[+call nvim_exec_lua('return vim.tbl_count {x=1,y=2}')]], '+qa!'}):gsub('\r\n', '\n') + eq(1, eval('v:shell_error')) + matches("'vim%.shared' not found", out) end) end) |