diff options
author | w0rp <devw0rp@gmail.com> | 2016-10-17 21:14:34 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2016-10-17 21:14:34 +0100 |
commit | 654a1724730e181c80cd262a781055c5a9f0ca05 (patch) | |
tree | 851119a3a64c9ae82cd95b3725f914c7271ec702 /test | |
parent | 7c2a16e149a0dbcdfcac6ee441474caaad1ef3b6 (diff) | |
download | ale-654a1724730e181c80cd262a781055c5a9f0ca05.zip |
Make the nearest file search result absolute paths, and add tests to cover it.
Diffstat (limited to 'test')
-rw-r--r-- | test/test_nearest_file_search.vader | 11 | ||||
-rw-r--r-- | test/top/example.ini | 0 | ||||
-rw-r--r-- | test/top/middle/bottom/dummy.txt | 0 |
3 files changed, 11 insertions, 0 deletions
diff --git a/test/test_nearest_file_search.vader b/test/test_nearest_file_search.vader new file mode 100644 index 00000000..c59bfce2 --- /dev/null +++ b/test/test_nearest_file_search.vader @@ -0,0 +1,11 @@ +Execute(Open a file some directory down): + silent! cd /testplugin/test + :e! top/middle/bottom/dummy.txt + +Then(We should be able to find a configuration file further up): + AssertEqual expand('%:p:h:h:h:h') . '/top/example.ini', ale#util#FindNearestFile(bufnr('%'), 'example.ini') + +Execute(Do nothing): + +Then(We shouldn't find anything for files which don't match): + AssertEqual '', ale#util#FindNearestFile(bufnr('%'), 'cantfindthis') diff --git a/test/top/example.ini b/test/top/example.ini new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/top/example.ini diff --git a/test/top/middle/bottom/dummy.txt b/test/top/middle/bottom/dummy.txt new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/top/middle/bottom/dummy.txt |