Fix issues with running individual tests, and get the Vim tests to run on certain machines again
This commit is contained in:
@@ -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 a directory some directory down):
|
||||
call ale#test#SetFilename('top/middle/bottom/dummy.txt')
|
||||
|
||||
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#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):
|
||||
Execute(We shouldn't find anything for files which don't match):
|
||||
AssertEqual
|
||||
\ '',
|
||||
\ ale#path#FindNearestDirectory(bufnr('%'), 'ale-this-should-never-match-anything')
|
||||
|
||||
Reference in New Issue
Block a user