blob: dbddffb4925cfb164f032f86d34dd9991b1318ae (
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
|
" Tests for :unlet
func Test_read_only()
try
" this caused a crash
unlet v:count
catch
call assert_true(v:exception =~ ':E795:')
endtry
endfunc
func Test_existing()
let does_exist = 1
call assert_true(exists('does_exist'))
unlet does_exist
call assert_false(exists('does_exist'))
endfunc
func Test_not_existing()
unlet! does_not_exist
try
unlet does_not_exist
catch
call assert_true(v:exception =~ ':E108:')
endtry
endfunc
func Test_unlet_fails()
call assert_fails('unlet v:["count"]', 'E46:')
endfunc
func Test_unlet_env()
let envcmd = has('win32') ? 'set' : 'env'
let $FOOBAR = 'test'
let found = 0
for kv in split(system(envcmd), "\r*\n")
if kv == 'FOOBAR=test'
let found = 1
endif
endfor
call assert_equal(1, found)
unlet $FOOBAR
let found = 0
for kv in split(system(envcmd), "\r*\n")
if kv == 'FOOBAR=test'
let found = 1
endif
endfor
call assert_equal(0, found)
unlet $MUST_NOT_BE_AN_ERROR
endfunc
|