From bcf79c62bca76b8b2fb5f51e3f83d4c645d91684 Mon Sep 17 00:00:00 2001 From: Rom Grk Date: Sat, 24 Oct 2020 05:48:00 -0400 Subject: tests: add test for Scroll autocmd --- test/functional/autocmd/scroll_spec.lua | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 test/functional/autocmd/scroll_spec.lua diff --git a/test/functional/autocmd/scroll_spec.lua b/test/functional/autocmd/scroll_spec.lua new file mode 100644 index 0000000000..f76d80812c --- /dev/null +++ b/test/functional/autocmd/scroll_spec.lua @@ -0,0 +1,24 @@ +local helpers = require('test.functional.helpers')(after_each) + +local clear = helpers.clear +local eq = helpers.eq +local eval = helpers.eval +local funcs = helpers.funcs +local source = helpers.source + +describe('Scroll', function() + before_each(clear) + + it('is triggered by scrolling the window', function() + source([[ + let g:scroll = 0 + let g:buf = bufnr('%') + + autocmd scroll * let g:scroll += 1 + + call nvim_buf_set_lines(g:buf, 0, -1, v:true, ['1', '2', '3', '4', '5']) + call feedkeys("\", "n") + ]]) + eq(1, eval('g:scroll')) + end) +end) -- cgit