blob: 651c6fa41d96ca14db2bf72d6a5c9ecab18bab3a (
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
|
-- Test if fnameescape is correct for special chars like!
local t = require('test.functional.testutil')(after_each)
local clear = t.clear
local command, expect = t.command, t.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)
|