2017-07-09 13:58:17 +00:00
|
|
|
Before:
|
|
|
|
call ale#test#SetDirectory('/testplugin/test')
|
|
|
|
|
|
|
|
After:
|
|
|
|
call ale#test#RestoreDirectory()
|
|
|
|
|
|
|
|
Execute(We should be able to find a directory some directory down):
|
|
|
|
call ale#test#SetFilename('top/middle/bottom/dummy.txt')
|
2017-01-20 17:30:23 +00:00
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ expand('%:p:h:h:h:h') . '/top/ale-special-directory-name-dont-use-this-please/',
|
2017-04-17 22:29:02 +00:00
|
|
|
\ ale#path#FindNearestDirectory(bufnr('%'), 'ale-special-directory-name-dont-use-this-please')
|
2017-01-20 17:30:23 +00:00
|
|
|
|
2017-07-09 13:58:17 +00:00
|
|
|
Execute(We shouldn't find anything for files which don't match):
|
2017-01-20 17:30:23 +00:00
|
|
|
AssertEqual
|
|
|
|
\ '',
|
2017-04-17 22:29:02 +00:00
|
|
|
\ ale#path#FindNearestDirectory(bufnr('%'), 'ale-this-should-never-match-anything')
|