aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_autochdir.vim
blob: 67c537b4072a47e2475b55f147393fd09e3f997a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
" Test 'autochdir' behavior

if !exists("+autochdir")
  throw 'Skipped: autochdir feature missing'
endif

func Test_set_filename()
  let cwd = getcwd()
  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
  exe 'cd ' . cwd
  call delete('samples/Xtest')
endfunc