comparison src/testdir/test_delete.vim @ 7641:b44fc33ef92a v7.4.1120

commit https://github.com/vim/vim/commit/336bd622c31e1805495c034e1a8cfadcc0bbabc7 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 17 18:23:58 2016 +0100 patch 7.4.1120 Problem: delete(x, 'rf') fails if a directory is empty. (Lcd) Solution: Ignore not finding matches in an empty directory.
author Christian Brabandt <cb@256bit.org>
date Sun, 17 Jan 2016 18:30:05 +0100
parents befbed72da87
children 7f355d8cd634
comparison
equal deleted inserted replaced
7640:6da21217eb5a 7641:b44fc33ef92a
19 endfunc 19 endfunc
20 20
21 func Test_recursive_delete() 21 func Test_recursive_delete()
22 call mkdir('Xdir1') 22 call mkdir('Xdir1')
23 call mkdir('Xdir1/subdir') 23 call mkdir('Xdir1/subdir')
24 call mkdir('Xdir1/empty')
24 split Xdir1/Xfile 25 split Xdir1/Xfile
25 call setline(1, ['a', 'b']) 26 call setline(1, ['a', 'b'])
26 w 27 w
27 w Xdir1/subdir/Xfile 28 w Xdir1/subdir/Xfile
28 close 29 close
29 call assert_true(isdirectory('Xdir1')) 30 call assert_true(isdirectory('Xdir1'))
30 call assert_equal(['a', 'b'], readfile('Xdir1/Xfile')) 31 call assert_equal(['a', 'b'], readfile('Xdir1/Xfile'))
31 call assert_true(isdirectory('Xdir1/subdir')) 32 call assert_true(isdirectory('Xdir1/subdir'))
32 call assert_equal(['a', 'b'], readfile('Xdir1/subdir/Xfile')) 33 call assert_equal(['a', 'b'], readfile('Xdir1/subdir/Xfile'))
34 call assert_true(isdirectory('Xdir1/empty'))
33 call assert_equal(0, delete('Xdir1', 'rf')) 35 call assert_equal(0, delete('Xdir1', 'rf'))
34 call assert_false(isdirectory('Xdir1')) 36 call assert_false(isdirectory('Xdir1'))
35 call assert_equal(-1, delete('Xdir1', 'd')) 37 call assert_equal(-1, delete('Xdir1', 'd'))
36 endfunc 38 endfunc
37 39