view src/testdir/test_findfile.vim @ 14627:335f32c55ac3 v8.1.0327

patch 8.1.0327: the "g CTRL-G" command isn't tested much commit https://github.com/vim/vim/commit/0529583ff144e2cb8fb57fe61a86997310bd7727 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 24 22:07:58 2018 +0200 patch 8.1.0327: the "g CTRL-G" command isn't tested much Problem: The "g CTRL-G" command isn't tested much. Solution: Add more tests. (Dominique Pelle, closes https://github.com/vim/vim/issues/3369)
author Christian Brabandt <cb@256bit.org>
date Fri, 24 Aug 2018 22:15:05 +0200
parents a479b7064550
children 977a05589b65
line wrap: on
line source

" Test for findfile()
"
func Test_findfile()
  new
  let cwd=getcwd()
  cd ..

  " Tests may be run from a shadow directory, so an extra cd needs to be done to
  " get above src/
  if fnamemodify(getcwd(), ':t') != 'src'
    cd ../.. 
  else 
    cd .. 
  endif
  set ssl

  call assert_equal('src/testdir/test_findfile.vim', findfile('test_findfile.vim','src/test*'))
  exe "cd" cwd
  cd ..
  call assert_equal('testdir/test_findfile.vim', findfile('test_findfile.vim','test*'))
  call assert_equal('testdir/test_findfile.vim', findfile('test_findfile.vim','testdir'))

  exe "cd" cwd
  q!
endfunc