summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test_resolve_local_path.vader15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/test_resolve_local_path.vader b/test/test_resolve_local_path.vader
new file mode 100644
index 00000000..bdbac01b
--- /dev/null
+++ b/test/test_resolve_local_path.vader
@@ -0,0 +1,15 @@
+Execute(Open a file some directory down):
+ silent! cd /testplugin/test
+ :e! top/middle/bottom/dummy.txt
+
+Then(We should be able to to find the local version of a file):
+ AssertEqual
+ \ expand('%:p:h:h:h:h') . '/top/example.ini',
+ \ ale#util#ResolveLocalPath(bufnr('%'), 'example.ini', '/global/config.ini')
+
+Execute(Do nothing):
+
+Then(We shouldn't find anything for files which don't match):
+ AssertEqual
+ \ '/global/config.ini',
+ \ ale#util#ResolveLocalPath(bufnr('%'), 'missing.ini', '/global/config.ini')