blob: c8ee423ff33f8e549760d34f05a928d57bca1ebe (
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 helpers = require('test.functional.helpers')(after_each)
local clear = helpers.clear
local command, expect = helpers.command, helpers.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)
|