diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-08-10 00:01:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-10 00:01:32 +0200 |
commit | cf9dd7a3f473c5d523e7f248bfc6f83904fff74b (patch) | |
tree | d0bb65cc53b74927b09fca2064792f058ea4f797 /src/nvim/testdir | |
parent | cb7bdf5f920df089adab8a74d2522440ad2d1490 (diff) | |
parent | fc8965787b136bb0e34c4beda7da04786337ea1d (diff) | |
download | rneovim-cf9dd7a3f473c5d523e7f248bfc6f83904fff74b.tar.gz rneovim-cf9dd7a3f473c5d523e7f248bfc6f83904fff74b.tar.bz2 rneovim-cf9dd7a3f473c5d523e7f248bfc6f83904fff74b.zip |
Merge #8835 from janlazo/vim-8.0.1819
Diffstat (limited to 'src/nvim/testdir')
-rw-r--r-- | src/nvim/testdir/test_swap.vim | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_swap.vim b/src/nvim/testdir/test_swap.vim index 245e1f18bb..bc7b7c00d3 100644 --- a/src/nvim/testdir/test_swap.vim +++ b/src/nvim/testdir/test_swap.vim @@ -46,3 +46,18 @@ func Test_swap_directory() call delete("Xtest2", "rf") call delete("Xtest.je", "rf") endfunc + +func Test_missing_dir() + call mkdir('Xswapdir') + exe 'set directory=' . getcwd() . '/Xswapdir' + + call assert_equal('', glob('foo')) + call assert_equal('', glob('bar')) + edit foo/x.txt + " This should not give a warning for an existing swap file. + split bar/x.txt + only + + set directory& + call delete('Xswapdir', 'rf') +endfunc |