view src/testdir/test_autochdir.vim @ 11767:b118e9bd0107

Added tag v8.0.0765 for changeset 6315c631dcb7744d2ba1e35d75cd33bf17bd7406
author Christian Brabandt <cb@256bit.org>
date Sun, 23 Jul 2017 23:00:06 +0200
parents 38e2fc4ee4ef
children 03a6aeea2096
line wrap: on
line source

" Test 'autochdir' behavior

if !exists("+autochdir")
  finish
endif

func Test_set_filename()
  call test_autochdir()
  set acd
  new
  w samples/Xtest
  call assert_equal("Xtest", expand('%'))
  call assert_equal("samples", substitute(getcwd(), '.*/\(\k*\)', '\1', ''))
  bwipe!
  set noacd
  call delete('samples/Xtest')
endfunc