blob: f02c68c7b7c41e6e2ff925fd5ec4d2c319650958 (
plain)
1
2
3
4
5
6
7
8
9
|
" Tests for parsing the modeline.
func Test_modeline_invalid()
" This was reading before allocated memory.
call writefile(['vi:0', 'nothing'], 'Xmodeline')
call assert_fails('split Xmodeline', 'E518:')
bwipe!
call delete('Xmodeline')
endfunc
|