Fix issues with running individual tests, and get the Vim tests to run on certain machines again

This commit is contained in:
w0rp 2017-07-09 14:58:17 +01:00
parent c67d3b7e60
commit 836a2cfe3b
7 changed files with 76 additions and 22 deletions

View file

@ -1,15 +1,17 @@
Execute(Open a file some directory down):
silent! cd /testplugin/test
:e! top/middle/bottom/dummy.txt
Before:
call ale#test#SetDirectory('/testplugin/test')
After:
call ale#test#RestoreDirectory()
Execute(We should be able to find the local version of a file):
call ale#test#SetFilename('top/middle/bottom/dummy.txt')
Then(We should be able to find the local version of a file):
AssertEqual
\ expand('%:p:h:h:h:h') . '/top/example.ini',
\ ale#path#ResolveLocalPath(bufnr('%'), 'example.ini', '/global/config.ini')
Execute(Do nothing):
Then(We shouldn't find anything for files which don't match):
Execute(We shouldn't find anything for files which don't match):
AssertEqual
\ '/global/config.ini',
\ ale#path#ResolveLocalPath(bufnr('%'), 'missing.ini', '/global/config.ini')