neovim/test/functional/autocmd/filetype_spec.lua

18 lines
483 B
Lua

local helpers = require('test.functional.helpers')(after_each)
local eval = helpers.eval
local clear = helpers.clear
local command = helpers.command
describe('autocmd FileType', function()
before_each(clear)
it("is triggered by :help only once", function()
helpers.add_builddir_to_rtp()
command("let g:foo = 0")
command("autocmd FileType help let g:foo = g:foo + 1")
command("help help")
assert.same(1, eval('g:foo'))
end)
end)