legacy tests: migrate test18

This commit is contained in:
Rainer Borene
2014-10-22 20:25:40 -02:00
committed by Thiago de Arruda
parent 481c449c72
commit b33c92439b
3 changed files with 28 additions and 20 deletions

View File

@@ -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

View File

@@ -1,4 +0,0 @@
start text
#test
test text
test text

View 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)