blob: 5a2d46706af38129fb6ab279c7511370f07b7c7c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
-- Test for expanding file names
local helpers = require('test.functional.helpers')(after_each)
local eq = helpers.eq
local call = helpers.call
local nvim = helpers.meths
local clear = helpers.clear
local source = helpers.source
local function expected_empty()
eq({}, nvim.get_vvar('errors'))
end
describe('expand file name', function()
after_each(function()
helpers.rmdir('Xdir1')
helpers.rmdir('Xdir2')
helpers.rmdir('Xdir3')
helpers.rmdir('Xdir4')
end)
before_each(function()
clear()
source([[
func Test_with_directories()
call mkdir('Xdir1')
call mkdir('Xdir2')
call mkdir('Xdir3')
cd Xdir3
call mkdir('Xdir4')
cd ..
split Xdir1/file
call setline(1, ['a', 'b'])
w
w Xdir3/Xdir4/file
close
next Xdir?/*/file
call assert_equal('Xdir3/Xdir4/file', expand('%'))
next! Xdir?/*/nofile
call assert_equal('Xdir?/*/nofile', expand('%'))
call delete('Xdir1', 'rf')
call delete('Xdir2', 'rf')
call delete('Xdir3', 'rf')
endfunc
func Test_with_tilde()
let dir = getcwd()
call mkdir('Xdir ~ dir')
call assert_true(isdirectory('Xdir ~ dir'))
cd Xdir\ ~\ dir
call assert_true(getcwd() =~ 'Xdir \~ dir')
exe 'cd ' . fnameescape(dir)
call delete('Xdir ~ dir', 'd')
call assert_false(isdirectory('Xdir ~ dir'))
endfunc
]])
end)
it('works with directories', function()
call('Test_with_directories')
expected_empty()
end)
it('works with tilde', function()
call('Test_with_tilde')
expected_empty()
end)
end)
|