view src/testdir/test_autochdir.vim @ 18189:b5bf891fa92c v8.1.2089

patch 8.1.2089: do not get a hint that $TEST_FILTER was active Commit: https://github.com/vim/vim/commit/7b666c7883c905a0e1428b8bfa7ba062af2656e7 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 27 21:25:00 2019 +0200 patch 8.1.2089: do not get a hint that $TEST_FILTER was active Problem: Do not get a hint that $TEST_FILTER was active. Solution: Mention $TEST_FILTER if no functions were executed.
author Bram Moolenaar <Bram@vim.org>
date Fri, 27 Sep 2019 21:30:03 +0200
parents 0da9bc55c31a
children 26a04a556982
line wrap: on
line source

" Test 'autochdir' behavior

source check.vim
CheckOption autochdir

func Test_set_filename()
  let cwd = getcwd()
  call test_autochdir()
  set acd

  let s:li = []
  autocmd DirChanged auto call add(s:li, "autocd")
  autocmd DirChanged auto call add(s:li, expand("<afile>"))

  new
  w samples/Xtest
  call assert_equal("Xtest", expand('%'))
  call assert_equal("samples", substitute(getcwd(), '.*/\(\k*\)', '\1', ''))
  call assert_equal(["autocd", getcwd()], s:li)

  bwipe!
  au! DirChanged
  set noacd
  exe 'cd ' . cwd
  call delete('samples/Xtest')
endfunc