mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
052498ed42
Specifically, functions that are run in the context of the test runner are put in module `test/testutil.lua` while the functions that are run in the context of the test session are put in `test/functional/testnvim.lua`. Closes https://github.com/neovim/neovim/issues/27004.
34 lines
714 B
Lua
34 lines
714 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)
|
|
screen:attach()
|
|
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)
|