Move path functions to their own file

This commit is contained in:
w0rp
2017-04-17 23:29:02 +01:00
parent 6c762237ce
commit e237add9fd
26 changed files with 90 additions and 89 deletions

View File

@@ -5,11 +5,11 @@ Execute(Open a file some directory down):
Then(We should be able to find the right directory):
AssertEqual
\ expand('%:p:h:h:h:h') . '/top/ale-special-directory-name-dont-use-this-please/',
\ ale#util#FindNearestDirectory(bufnr('%'), 'ale-special-directory-name-dont-use-this-please')
\ ale#path#FindNearestDirectory(bufnr('%'), 'ale-special-directory-name-dont-use-this-please')
Execute(Do nothing):
Then(We shouldn't find anything for files which don't match):
AssertEqual
\ '',
\ ale#util#FindNearestDirectory(bufnr('%'), 'ale-this-should-never-match-anything')
\ ale#path#FindNearestDirectory(bufnr('%'), 'ale-this-should-never-match-anything')