diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-12-01 19:02:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-01 19:02:38 -0500 |
commit | d80f262f894bfc1d8a8ba79fdc5d1c14f738a140 (patch) | |
tree | 28bae2d0a935a9e0fdd13f19c1dbaaec294fc73e /test/functional/terminal/buffer_spec.lua | |
parent | 72c22862dc2199462aef0d450a49d29a9d0680b9 (diff) | |
parent | 518fe0e8a2de00ce6b7f62183dfa89b410378a89 (diff) | |
download | rneovim-d80f262f894bfc1d8a8ba79fdc5d1c14f738a140.tar.gz rneovim-d80f262f894bfc1d8a8ba79fdc5d1c14f738a140.tar.bz2 rneovim-d80f262f894bfc1d8a8ba79fdc5d1c14f738a140.zip |
Merge pull request #13428 from janlazo/nvim-8.0.1525
vim-patch:8.0.{858,953,1525}
Diffstat (limited to 'test/functional/terminal/buffer_spec.lua')
-rw-r--r-- | test/functional/terminal/buffer_spec.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/functional/terminal/buffer_spec.lua b/test/functional/terminal/buffer_spec.lua index 8e171d31aa..209537831f 100644 --- a/test/functional/terminal/buffer_spec.lua +++ b/test/functional/terminal/buffer_spec.lua @@ -6,6 +6,7 @@ local eval, feed_command, source = helpers.eval, helpers.feed_command, helpers.s local eq, neq = helpers.eq, helpers.neq local write_file = helpers.write_file local command= helpers.command +local exc_exec = helpers.exc_exec describe(':terminal buffer', function() local screen @@ -253,6 +254,10 @@ describe(':terminal buffer', function() ]]) command('bdelete!') end) + + it('handles wqall', function() + eq('Vim(wqall):E948: Job still running', exc_exec('wqall')) + end) end) describe('No heap-buffer-overflow when using', function() |