summaryrefslogtreecommitdiff
path: root/test/test_find_nearest_directory.vader
blob: ecfd1385be5f1b902d79cec804c7e356c78644cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Execute(Open a file some directory down):
  silent! cd /testplugin/test
  :e! 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):
  AssertEqual
  \ '',
  \ ale#path#FindNearestDirectory(bufnr('%'), 'ale-this-should-never-match-anything')