view src/testdir/test_fnameescape.vim @ 20923:a9516192b1db v8.2.1013

patch 8.2.1013: channel tests can be a bit flaky Commit: https://github.com/vim/vim/commit/ec9b017b879cb744393aadd3d105ee5da1332437 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jun 19 19:10:59 2020 +0200 patch 8.2.1013: channel tests can be a bit flaky Problem: Channel tests can be a bit flaky. Solution: Set the g:test_is_flaky flag in SetUp().
author Bram Moolenaar <Bram@vim.org>
date Fri, 19 Jun 2020 19:15:04 +0200
parents b8fd7364befd
children 08940efa6b4e
line wrap: on
line source


" 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