diff options
author | Héctor Ramón Jiménez <hector0193@gmail.com> | 2018-05-11 20:07:28 +0200 |
---|---|---|
committer | Héctor Ramón Jiménez <hector0193@gmail.com> | 2018-05-11 20:07:28 +0200 |
commit | 2f40da76e60c474dd1125e01013051d71fefc48e (patch) | |
tree | 73db34050813a5e57305fe730d945c23d866102b /test/test_elm_executable_detection.vader | |
parent | d40f44793194ca383a72426738f5a411682bb241 (diff) | |
download | ale-2f40da76e60c474dd1125e01013051d71fefc48e.zip |
Test global problems and imported module errors
Diffstat (limited to 'test/test_elm_executable_detection.vader')
-rw-r--r-- | test/test_elm_executable_detection.vader | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/test_elm_executable_detection.vader b/test/test_elm_executable_detection.vader index c17d1bbc..9146eea6 100644 --- a/test/test_elm_executable_detection.vader +++ b/test/test_elm_executable_detection.vader @@ -3,8 +3,8 @@ Before: runtime ale_linters/elm/make.vim After: - unlet! g:ale_elm_use_global - unlet! g:ale_elm_executable + unlet! g:ale_elm_make_use_global + unlet! g:ale_elm_make_executable call ale#test#RestoreDirectory() @@ -16,7 +16,7 @@ Execute(should get valid executable with default params): \ ale_linters#elm#make#GetExecutable(bufnr('')) Execute(should get valid executable with 'use_global' params): - let g:ale_elm_use_global = 1 + let g:ale_elm_make_use_global = 1 call ale#test#SetFilename('elm-test-files/app/testfile.elm') @@ -25,8 +25,8 @@ Execute(should get valid executable with 'use_global' params): \ ale_linters#elm#make#GetExecutable(bufnr('')) Execute(should get valid executable with 'use_global' and 'executable' params): - let g:ale_elm_executable = 'other-elm' - let g:ale_elm_use_global = 1 + let g:ale_elm_make_executable = 'other-elm' + let g:ale_elm_make_use_global = 1 call ale#test#SetFilename('elm-test-files/app/testfile.elm') |