neovim/test/functional/ex_cmds/file_spec.lua

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
1.0 KiB
Lua
Raw Normal View History

local t = require('test.functional.testutil')()
local clear = t.clear
local command = t.command
local eq = t.eq
local fn = t.fn
local rmdir = t.rmdir
local mkdir = t.mkdir
2017-04-09 16:38:20 -07:00
describe(':file', function()
local swapdir = vim.uv.cwd() .. '/Xtest-file_spec'
2017-04-09 16:38:20 -07:00
before_each(function()
clear()
rmdir(swapdir)
mkdir(swapdir)
2017-04-09 16:38:20 -07:00
end)
after_each(function()
command('%bwipeout!')
rmdir(swapdir)
end)
it('rename does not lose swapfile #6487', function()
local testfile = 'test-file_spec'
local testfile_renamed = testfile .. '-renamed'
-- Note: `set swapfile` *must* go after `set directory`: otherwise it may
-- attempt to create a swapfile in different directory.
command('set directory^=' .. swapdir .. '//')
command('set swapfile fileformat=unix undolevels=-1')
command('edit! ' .. testfile)
-- Before #6487 this gave "E301: Oops, lost the swap file !!!" on Windows.
command('file ' .. testfile_renamed)
eq(testfile_renamed .. '.swp', string.match(fn.execute('swapname'), '[^%%]+$'))
2017-04-09 16:38:20 -07:00
end)
end)