2014-10-22 13:55:13 -07:00
|
|
|
-- Test if fnameescape is correct for special chars like!
|
|
|
|
|
2024-04-09 04:26:16 -07:00
|
|
|
local t = require('test.functional.testutil')()
|
2024-04-08 02:03:20 -07:00
|
|
|
local clear = t.clear
|
|
|
|
local command, expect = t.command, t.expect
|
2014-10-22 13:55:13 -07:00
|
|
|
|
|
|
|
describe('fnameescape', function()
|
|
|
|
setup(clear)
|
|
|
|
|
|
|
|
it('is working', function()
|
2017-04-08 14:12:26 -07:00
|
|
|
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([[
|
2017-04-08 14:12:26 -07:00
|
|
|
|
2014-10-22 13:55:13 -07:00
|
|
|
Space
|
|
|
|
ExclamationMark]])
|
|
|
|
end)
|
|
|
|
|
|
|
|
teardown(function()
|
|
|
|
os.remove('Xspa ce')
|
|
|
|
os.remove('Xemark!')
|
|
|
|
end)
|
|
|
|
end)
|