view src/testdir/test_autochdir.vim @ 9808:0470742f7346 v7.4.2179

commit https://github.com/vim/vim/commit/e4a76ad0e74a31bbd9f1b1ac5b816d714d19a412 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 7 16:50:10 2016 +0200 patch 7.4.2179 Problem: Reading from stdin test fails on MS-Windows. Solution: Strip the extra space.
author Christian Brabandt <cb@256bit.org>
date Sun, 07 Aug 2016 17:00:05 +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