mirror of
https://github.com/neovim/neovim
synced 2025-07-16 09:11:51 +00:00
ref #9280 Introduce the `vim.compat` module, to help environments with system Lua 5.2+ run the build/tests. Include the module implicitly in all tests. ref #8677 legacy `vim` module: beep buffer command dict eval firstline lastline line list open type window
55 lines
1.4 KiB
Lua
55 lines
1.4 KiB
Lua
local helpers = require('test.functional.helpers')(after_each)
|
|
local Screen = require('test.functional.ui.screen')
|
|
local clear, command, eq = helpers.clear, helpers.command, helpers.eq
|
|
|
|
describe('ui/ext_tabline', function()
|
|
local screen
|
|
local event_tabs, event_curtab
|
|
|
|
before_each(function()
|
|
clear()
|
|
screen = Screen.new(25, 5)
|
|
screen:attach({rgb=true, ext_tabline=true})
|
|
screen:set_on_event_handler(function(name, data)
|
|
if name == "tabline_update" then
|
|
event_curtab, event_tabs = unpack(data)
|
|
end
|
|
end)
|
|
end)
|
|
|
|
after_each(function()
|
|
screen:detach()
|
|
end)
|
|
|
|
it('publishes UI events', function()
|
|
command("tabedit another-tab")
|
|
|
|
local expected_tabs = {
|
|
{tab = { id = 1 }, name = '[No Name]'},
|
|
{tab = { id = 2 }, name = 'another-tab'},
|
|
}
|
|
screen:expect{grid=[[
|
|
^ |
|
|
~ |
|
|
~ |
|
|
~ |
|
|
|
|
|
]], condition=function()
|
|
eq({ id = 2 }, event_curtab)
|
|
eq(expected_tabs, event_tabs)
|
|
end}
|
|
|
|
command("tabNext")
|
|
screen:expect{grid=[[
|
|
^ |
|
|
~ |
|
|
~ |
|
|
~ |
|
|
|
|
|
]], condition=function()
|
|
eq({ id = 1 }, event_curtab)
|
|
eq(expected_tabs, event_tabs)
|
|
end}
|
|
end)
|
|
end)
|