neovim/test/functional/legacy/cpoptions_spec.lua
dundargoc 052498ed42 test: improve test conventions
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.
2024-04-23 18:17:04 +02:00

30 lines
730 B
Lua

local n = require('test.functional.testnvim')()
local Screen = require('test.functional.ui.screen')
local clear = n.clear
local command = n.command
local feed = n.feed
before_each(clear)
describe('cpoptions', function()
it('$', function()
local screen = Screen.new(30, 6)
screen:attach()
command('set cpo+=$')
command([[call setline(1, 'one two three')]])
feed('c2w')
screen:expect([[
^one tw$ three |
{1:~ }|*4
{5:-- INSERT --} |
]])
feed('vim<Esc>')
screen:expect([[
vi^m three |
{1:~ }|*4
|
]])
end)
end)