blob: f0361c2f5ab5794a361b2e3e755adfff2c67909e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
-- Test if fnameescape is correct for special chars like!
local n = require('test.functional.testnvim')()
local clear = n.clear
local command, expect = n.command, n.expect
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')
expect([[
Space
ExclamationMark]])
end)
teardown(function()
os.remove('Xspa ce')
os.remove('Xemark!')
end)
end)
|