mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -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.
40 lines
911 B
Lua
40 lines
911 B
Lua
local t = require('test.testutil')
|
|
local n = require('test.functional.testnvim')()
|
|
|
|
local eq = t.eq
|
|
local clear = n.clear
|
|
local insert = n.insert
|
|
local feed = n.feed
|
|
local expect = n.expect
|
|
local feed_command = n.feed_command
|
|
local exc_exec = n.exc_exec
|
|
|
|
describe(':undojoin command', function()
|
|
before_each(function()
|
|
clear()
|
|
insert([[
|
|
Line of text 1
|
|
Line of text 2]])
|
|
feed_command('goto 1')
|
|
end)
|
|
it('joins changes in a buffer', function()
|
|
feed_command('undojoin | delete')
|
|
expect([[
|
|
Line of text 2]])
|
|
feed('u')
|
|
expect([[
|
|
]])
|
|
end)
|
|
it('does not corrupt undolist when connected with redo', function()
|
|
feed('ixx<esc>')
|
|
feed_command('undojoin | redo')
|
|
expect([[
|
|
xxLine of text 1
|
|
Line of text 2]])
|
|
end)
|
|
it('does not raise an error when called twice', function()
|
|
local ret = exc_exec('undojoin | undojoin')
|
|
eq(0, ret)
|
|
end)
|
|
end)
|