functests: Refactor legacy/003_cindent_spec and legacy/increment_spec

This commit is contained in:
ZyX 2017-04-08 22:17:39 +03:00
parent 7766b24f3c
commit cca029bc8d
2 changed files with 570 additions and 570 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
-- Tests for using Ctrl-A/Ctrl-X on visual selections -- Tests for using Ctrl-A/Ctrl-X on visual selections
local helpers = require('test.functional.helpers')(after_each) local helpers = require('test.functional.helpers')(after_each)
local source, execute = helpers.source, helpers.execute local source, command = helpers.source, helpers.command
local call, clear = helpers.call, helpers.clear local call, clear = helpers.call, helpers.clear
local eq, nvim = helpers.eq, helpers.meths local eq, nvim = helpers.eq, helpers.meths
@ -742,14 +742,14 @@ describe('Ctrl-A/Ctrl-X on visual selections', function()
local id = string.format('%02d', i) local id = string.format('%02d', i)
it('works on Test ' .. id, function() it('works on Test ' .. id, function()
execute('set nrformats&vi') -- &vi makes Vim compatible command('set nrformats&vi') -- &vi makes Vim compatible
call('Test_visual_increment_' .. id) call('Test_visual_increment_' .. id)
eq({}, nvim.get_vvar('errors')) eq({}, nvim.get_vvar('errors'))
end) end)
end end
it('does not drop leading zeroes', function() it('does not drop leading zeroes', function()
execute('set nrformats&vi') -- &vi makes Vim compatible command('set nrformats&vi') -- &vi makes Vim compatible
call('Test_normal_increment_01') call('Test_normal_increment_01')
eq({}, nvim.get_vvar('errors')) eq({}, nvim.get_vvar('errors'))
end) end)