neovim/test/functional/legacy/cpoptions_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

29 lines
710 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)
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)