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

33 lines
657 B
Lua

-- Tests for not doing smart indenting when it isn't set.
local n = require('test.functional.testnvim')()
local feed = n.feed
local clear = n.clear
local insert = n.insert
local expect = n.expect
local feed_command = n.feed_command
describe('unset smart indenting', function()
before_each(clear)
it('is working', function()
insert([[
start text
some test text
test text
test text
test text]])
feed_command('set nocin nosi ai')
feed_command('/some')
feed('2cc#test<Esc>')
expect([[
start text
#test
test text
test text]])
end)
end)