diff options
author | w0rp <devw0rp@gmail.com> | 2017-07-09 14:58:17 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-07-09 14:58:21 +0100 |
commit | 836a2cfe3b5ba2761291564cbf412ca79f9a52a9 (patch) | |
tree | 59eb08c4de6b7a823971b94817803a8598ea61fd /test/test_resolve_local_path.vader | |
parent | c67d3b7e60b03ad52fe232b93b8867395dd8caa5 (diff) | |
download | ale-836a2cfe3b5ba2761291564cbf412ca79f9a52a9.zip |
Fix issues with running individual tests, and get the Vim tests to run on certain machines again
Diffstat (limited to 'test/test_resolve_local_path.vader')
-rw-r--r-- | test/test_resolve_local_path.vader | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/test/test_resolve_local_path.vader b/test/test_resolve_local_path.vader index 703eec3d..ed1549a2 100644 --- a/test/test_resolve_local_path.vader +++ b/test/test_resolve_local_path.vader @@ -1,15 +1,17 @@ -Execute(Open a file some directory down): - silent! cd /testplugin/test - :e! top/middle/bottom/dummy.txt +Before: + call ale#test#SetDirectory('/testplugin/test') + +After: + call ale#test#RestoreDirectory() + +Execute(We should be able to find the local version of a file): + call ale#test#SetFilename('top/middle/bottom/dummy.txt') -Then(We should be able to find the local version of a file): AssertEqual \ expand('%:p:h:h:h:h') . '/top/example.ini', \ ale#path#ResolveLocalPath(bufnr('%'), 'example.ini', '/global/config.ini') -Execute(Do nothing): - -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 \ '/global/config.ini', \ ale#path#ResolveLocalPath(bufnr('%'), 'missing.ini', '/global/config.ini') |