blob: 25d6adee21141703bebd01a467ffcbc46e402254 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
local t = require('test.functional.testutil')()
local clear = t.clear
local eq = t.eq
local eval = t.eval
local source = t.source
local request = t.request
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
]])
request('nvim_command', [[normal! aa\<Esc>]])
eq(1, eval('g:modified'))
request('nvim_command', [[normal! u]])
eq(2, eval('g:modified'))
end)
end)
|