diff options
author | w0rp <devw0rp@gmail.com> | 2017-10-26 20:29:23 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-10-26 20:29:33 +0100 |
commit | 3ac92ea529e41fa733647692e40b6ee5c0622e1d (patch) | |
tree | 54518a098d847fa2b142e084d0558c0a3314cc6f /test | |
parent | 3ab069c9bd870c1dc469a2f92475abc13d3b9bb9 (diff) | |
download | ale-3ac92ea529e41fa733647692e40b6ee5c0622e1d.zip |
Fix #1048 - Do not lint files named "."
Diffstat (limited to 'test')
-rw-r--r-- | test/test_should_do_nothing_conditions.vader | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/test_should_do_nothing_conditions.vader b/test/test_should_do_nothing_conditions.vader index 3afa11ac..23ebd92e 100644 --- a/test/test_should_do_nothing_conditions.vader +++ b/test/test_should_do_nothing_conditions.vader @@ -1,6 +1,8 @@ Before: Save &l:statusline + call ale#test#SetDirectory('/testplugin/test') + let b:funky_command_created = 0 " We will test for the existence of this command, so create one if needed. @@ -10,6 +12,8 @@ Before: endif After: + call ale#test#RestoreDirectory() + if b:funky_command_created delcommand CtrlPFunky let b:funky_command_created = 0 @@ -25,3 +29,13 @@ Execute(ALE shouldn't do much of anything for ctrlp-funky buffers): let &l:statusline = '%#CtrlPMode2# prt %*%#CtrlPMode1# line %* <mru>={%#CtrlPMode1# funky %*}=<fil> <-> %=%<%#CtrlPMode2# %{getcwd()} %*' Assert ale#ShouldDoNothing(bufnr('')) + +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('')) |