2016-10-23 12:04:41 +00:00
|
|
|
Execute(Open a file some directory down):
|
|
|
|
silent! cd /testplugin/test
|
|
|
|
:e! top/middle/bottom/dummy.txt
|
|
|
|
|
2017-01-20 17:30:23 +00:00
|
|
|
Then(We should be able to find the local version of a file):
|
2016-10-23 12:04:41 +00:00
|
|
|
AssertEqual
|
|
|
|
\ expand('%:p:h:h:h:h') . '/top/example.ini',
|
|
|
|
\ ale#util#ResolveLocalPath(bufnr('%'), 'example.ini', '/global/config.ini')
|
|
|
|
|
|
|
|
Execute(Do nothing):
|
|
|
|
|
|
|
|
Then(We shouldn't find anything for files which don't match):
|
|
|
|
AssertEqual
|
|
|
|
\ '/global/config.ini',
|
|
|
|
\ ale#util#ResolveLocalPath(bufnr('%'), 'missing.ini', '/global/config.ini')
|