neovim/test/functional/autocmd/tabnew_spec.lua
ZyX ff470bb853 functests: Check logs in lua code
It is otherwise impossible to determine which test failed sanitizer/valgrind
check. test/functional/helpers.lua module return was changed so that tests which
do not provide after_each function to get new check will automatically fail.
2016-06-10 21:50:49 +03:00

29 lines
856 B
Lua

local helpers = require('test.functional.helpers')(after_each)
local clear = helpers.clear
local command = helpers.command
local eq = helpers.eq
local eval = helpers.eval
describe('autocmd TabNew', function()
before_each(clear)
it('matches when opening any new tab', function()
command('autocmd! TabNew * let g:test = "tabnew:".tabpagenr().":".bufnr("")')
command('tabnew')
eq('tabnew:2:1', eval('g:test'))
command('tabnew test.x')
eq('tabnew:3:2', eval('g:test'))
end)
it('matches when opening a new tab for FILE', function()
local tmp_path = helpers.funcs.tempname()
command('let g:test = "foo"')
command('autocmd! TabNew ' .. tmp_path .. ' let g:test = "bar"')
command('tabnew ' .. tmp_path ..'X')
eq('foo', eval('g:test'))
command('tabnew ' .. tmp_path)
eq('bar', eval('g:test'))
end)
end)