mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
tests: add functional test for BufModifiedSet
This commit is contained in:
parent
56f842e873
commit
3628d1ef72
20
test/functional/autocmd/bufmodifiedset_spec.lua
Normal file
20
test/functional/autocmd/bufmodifiedset_spec.lua
Normal file
@ -0,0 +1,20 @@
|
||||
local helpers = require('test.functional.helpers')(after_each)
|
||||
|
||||
local clear = helpers.clear
|
||||
local eq = helpers.eq
|
||||
local eval = helpers.eval
|
||||
local source = helpers.source
|
||||
|
||||
describe('BufModified', function()
|
||||
before_each(clear)
|
||||
|
||||
it('is triggered when modified and un-modified', function()
|
||||
source([[
|
||||
let g:modified = 0
|
||||
autocmd BufModifiedSet * let g:modified += 1
|
||||
execute "normal! aa\<Esc>"
|
||||
execute "normal! u"
|
||||
]])
|
||||
eq(2, eval('g:modified'))
|
||||
end)
|
||||
end)
|
Loading…
Reference in New Issue
Block a user