mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 14:08:32 +00:00
legacy tests: migrate test18
This commit is contained in:

committed by
Thiago de Arruda

parent
481c449c72
commit
b33c92439b
@@ -1,16 +0,0 @@
|
||||
Tests for not doing smart indenting when it isn't set.
|
||||
|
||||
STARTTEST
|
||||
:so small.vim
|
||||
:set nocin nosi ai
|
||||
/some
|
||||
2cc#test
|
||||
:?start?,$w! test.out
|
||||
:qa!
|
||||
ENDTEST
|
||||
|
||||
start text
|
||||
some test text
|
||||
test text
|
||||
test text
|
||||
test text
|
@@ -1,4 +0,0 @@
|
||||
start text
|
||||
#test
|
||||
test text
|
||||
test text
|
28
test/functional/legacy/018_unset_smart_indenting_spec.lua
Normal file
28
test/functional/legacy/018_unset_smart_indenting_spec.lua
Normal file
@@ -0,0 +1,28 @@
|
||||
-- Tests for not doing smart indenting when it isn't set.
|
||||
|
||||
local helpers = require('test.functional.helpers')
|
||||
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)
|
Reference in New Issue
Block a user