summaryrefslogtreecommitdiff
path: root/test/test_nearest_file_search.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_nearest_file_search.vader')
-rw-r--r--test/test_nearest_file_search.vader16
1 files changed, 9 insertions, 7 deletions
diff --git a/test/test_nearest_file_search.vader b/test/test_nearest_file_search.vader
index c2499ad2..71b7d109 100644
--- a/test/test_nearest_file_search.vader
+++ b/test/test_nearest_file_search.vader
@@ -1,11 +1,13 @@
-Execute(Open a file some directory down):
- silent! cd /testplugin/test
- :e! top/middle/bottom/dummy.txt
+Before:
+ call ale#test#SetDirectory('/testplugin/test')
-Then(We should be able to find a configuration file further up):
- AssertEqual expand('%:p:h:h:h:h') . '/top/example.ini', ale#path#FindNearestFile(bufnr('%'), 'example.ini')
+After:
+ call ale#test#RestoreDirectory()
+
+Execute(We should be able to find a configuration file further up):
+ call ale#test#SetFilename('top/middle/bottom/dummy.txt')
-Execute(Do nothing):
+ AssertEqual expand('%:p:h:h:h:h') . '/top/example.ini', ale#path#FindNearestFile(bufnr('%'), 'example.ini')
-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#FindNearestFile(bufnr('%'), 'cantfindthis')