2017-09-03 17:24:43 +00:00
|
|
|
Before:
|
|
|
|
Save &l:statusline
|
|
|
|
|
2017-10-26 19:29:23 +00:00
|
|
|
call ale#test#SetDirectory('/testplugin/test')
|
|
|
|
|
2017-10-14 16:24:29 +00:00
|
|
|
let b:funky_command_created = 0
|
|
|
|
|
|
|
|
" We will test for the existence of this command, so create one if needed.
|
|
|
|
if !exists(':CtrlPFunky')
|
|
|
|
command CtrlPFunky echo
|
|
|
|
let b:funky_command_created = 1
|
|
|
|
endif
|
|
|
|
|
2017-09-03 17:24:43 +00:00
|
|
|
After:
|
2017-10-26 19:29:23 +00:00
|
|
|
call ale#test#RestoreDirectory()
|
|
|
|
|
2017-10-14 16:24:29 +00:00
|
|
|
if b:funky_command_created
|
|
|
|
delcommand CtrlPFunky
|
|
|
|
let b:funky_command_created = 0
|
|
|
|
endif
|
|
|
|
|
2017-10-14 16:27:05 +00:00
|
|
|
unlet! b:funky_command_created
|
|
|
|
|
2017-09-03 17:24:43 +00:00
|
|
|
Restore
|
|
|
|
|
|
|
|
Execute(ALE shouldn't do much of anything for ctrlp-funky buffers):
|
|
|
|
Assert !ale#ShouldDoNothing(bufnr('')), 'The preliminary check failed'
|
|
|
|
|
|
|
|
let &l:statusline = '%#CtrlPMode2# prt %*%#CtrlPMode1# line %* <mru>={%#CtrlPMode1# funky %*}=<fil> <-> %=%<%#CtrlPMode2# %{getcwd()} %*'
|
|
|
|
|
|
|
|
Assert ale#ShouldDoNothing(bufnr(''))
|
2017-10-26 19:29:23 +00:00
|
|
|
|
|
|
|
Execute(ALE shouldn't try to check buffers with '.' as the filename):
|
|
|
|
AssertEqual
|
|
|
|
\ 0,
|
|
|
|
\ ale#ShouldDoNothing(bufnr('')),
|
|
|
|
\ 'ShouldDoNothing() was 1 for some other reason'
|
|
|
|
|
|
|
|
silent! noautocmd file .
|
|
|
|
|
|
|
|
Assert ale#ShouldDoNothing(bufnr(''))
|