neovim/test/functional/legacy/digraph_spec.lua
bfredl e61228a214 fix(tests): needing two calls to setup a screen is cringe
Before calling "attach" a screen object is just a dummy container for
(row, col) values whose purpose is to be sent as part of the "attach"
function call anyway.

Just create the screen in an attached state directly. Keep the complete
(row, col, options) config together. It is still completely valid to
later detach and re-attach as needed, including to another session.
2024-11-14 12:40:57 +01:00

33 lines
694 B
Lua

local n = require('test.functional.testnvim')()
local Screen = require('test.functional.ui.screen')
local clear = n.clear
local feed = n.feed
before_each(clear)
describe('digraph', function()
-- oldtest: Test_entering_digraph()
it('characters displayed on the screen', function()
local screen = Screen.new(10, 6)
feed('i<C-K>')
screen:expect([[
{18:^?} |
{1:~ }|*4
{5:-- INSERT --}|
]])
feed('1')
screen:expect([[
{18:^1} |
{1:~ }|*4
{5:-- INSERT --}|
]])
feed('2')
screen:expect([[
½^ |
{1:~ }|*4
{5:-- INSERT --}|
]])
end)
end)