Files
neovim/test/functional/legacy/018_unset_smart_indenting_spec.lua
ZyX ff470bb853 functests: Check logs in lua code
It is otherwise impossible to determine which test failed sanitizer/valgrind
check. test/functional/helpers.lua module return was changed so that tests which
do not provide after_each function to get new check will automatically fail.
2016-06-10 21:50:49 +03:00

29 lines
657 B
Lua

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