mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
af23d17388
The new oldtest directory is in test/old/testdir. The reason for this is that many tests have hardcoded the parent directory name to be 'testdir'.
28 lines
630 B
VimL
28 lines
630 B
VimL
|
|
" Test if fnameescape is correct for special chars like !
|
|
func Test_fnameescape()
|
|
let fname = 'Xspa ce'
|
|
let status = v:false
|
|
try
|
|
exe "w! " . fnameescape(fname)
|
|
let status = v:true
|
|
endtry
|
|
call assert_true(status, "Space")
|
|
call delete(fname)
|
|
|
|
let fname = 'Xemark!'
|
|
let status = v:false
|
|
try
|
|
exe "w! " . fname->fnameescape()
|
|
let status = v:true
|
|
endtry
|
|
call assert_true(status, "ExclamationMark")
|
|
call delete(fname)
|
|
|
|
call assert_equal('\-', fnameescape('-'))
|
|
call assert_equal('\+', fnameescape('+'))
|
|
call assert_equal('\>', fnameescape('>'))
|
|
endfunc
|
|
|
|
" vim: shiftwidth=2 sts=2 expandtab
|