neovim/test/functional/legacy/102_fnameescape_spec.lua

27 lines
671 B
Lua
Raw Normal View History

2014-10-22 13:55:13 -07:00
-- Test if fnameescape is correct for special chars like!
local helpers = require('test.functional.helpers')(after_each)
local clear = helpers.clear
local command, expect = helpers.command, helpers.expect
2014-10-22 13:55:13 -07:00
describe('fnameescape', function()
setup(clear)
it('is working', function()
command('let fname = "Xspa ce"')
command('try | exe "w! " . fnameescape(fname) | put=\'Space\' | endtry')
command('let fname = "Xemark!"')
command('try | exe "w! " . fnameescape(fname) | put=\'ExclamationMark\' | endtry')
2014-10-22 13:55:13 -07:00
expect([[
2014-10-22 13:55:13 -07:00
Space
ExclamationMark]])
end)
teardown(function()
os.remove("Xspa ce")
os.remove("Xemark!")
end)
end)