summaryrefslogtreecommitdiff
path: root/test/test_nearest_file_search.vader
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-07-09 14:58:17 +0100
committerw0rp <devw0rp@gmail.com>2017-07-09 14:58:21 +0100
commit836a2cfe3b5ba2761291564cbf412ca79f9a52a9 (patch)
tree59eb08c4de6b7a823971b94817803a8598ea61fd /test/test_nearest_file_search.vader
parentc67d3b7e60b03ad52fe232b93b8867395dd8caa5 (diff)
downloadale-836a2cfe3b5ba2761291564cbf412ca79f9a52a9.zip
Fix issues with running individual tests, and get the Vim tests to run on certain machines again
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')