functests: Add test to check expected behaviour (failing)

This commit is contained in:
ZyX 2015-10-23 13:35:19 +03:00
parent a85163a5d2
commit ea2fe52552

View File

@ -90,6 +90,16 @@ describe('ShaDa support code', function()
eq(2, nvim_current_line())
end)
it('is able to dump and read back mark "', function()
nvim_command('edit ' .. testfilename)
nvim_command('2')
nvim_command('qall')
reset()
nvim_command('edit ' .. testfilename)
nvim_command('normal! `"')
eq(2, nvim_current_line())
end)
it('is able to populate v:oldfiles', function()
nvim_command('edit ' .. testfilename)
local tf_full = curbufmeths.get_name()