mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -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.
33 lines
657 B
Lua
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)
|