neovim/test/functional/ex_cmds/print_commands_spec.lua
2024-01-12 18:59:14 +00:00

12 lines
308 B
Lua

local helpers = require('test.functional.helpers')(after_each)
local clear, eq, command, fn = helpers.clear, helpers.eq, helpers.command, helpers.fn
describe(':z^', function()
before_each(clear)
it('correctly sets the cursor after :z^', function()
command('z^')
eq(1, fn.line('.'))
end)
end)