view src/testdir/test_fnameescape.vim @ 18158:ea327d003580 v8.1.2074

patch 8.1.2074: test for SafeState autocommand is a bit flaky Commit: https://github.com/vim/vim/commit/0d0c3ca007940cdb64ccbfd0e70846eedfe6a4a6 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 25 21:16:15 2019 +0200 patch 8.1.2074: test for SafeState autocommand is a bit flaky Problem: Test for SafeState autocommand is a bit flaky. Solution: Add to list of flaky tests.
author Bram Moolenaar <Bram@vim.org>
date Wed, 25 Sep 2019 21:30:04 +0200
parents 73ddc462979d
children b8fd7364befd
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)
endfunc