Files
neovim/src/nvim/testdir/test_autochdir.vim
Justin M. Keyes a1ee06a099 test/oldtest: restore test_autochdir.vim
We have a ported Lua version, but we should also keep the Vim version
around to make merging easier.
2018-02-11 15:29:19 +01:00

20 lines
371 B
VimL

" Test 'autochdir' behavior
if !exists("+autochdir")
finish
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