2018-08-02 22:44:12 +00:00
|
|
|
Before:
|
|
|
|
call ale#assert#SetUpLinterTest('elm', 'make')
|
|
|
|
|
|
|
|
After:
|
|
|
|
unlet! g:executable
|
|
|
|
|
|
|
|
call ale#assert#TearDownLinterTest()
|
|
|
|
|
|
|
|
Execute(should get valid executable with default params):
|
2021-03-20 22:11:22 +00:00
|
|
|
call ale#test#SetFilename('../test-files/elm/newapp/src/Main.elm')
|
2018-08-02 22:44:12 +00:00
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
let g:executable = ale#path#Simplify(g:dir . '/../test-files/elm/newapp/node_modules/.bin/elm')
|
2018-08-02 22:44:12 +00:00
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
AssertLinterCwd ale#path#Simplify(g:dir . '/../test-files/elm/newapp')
|
2018-08-02 22:44:12 +00:00
|
|
|
AssertLinter g:executable,
|
2021-03-01 20:11:10 +00:00
|
|
|
\ ale#Escape(g:executable) . ' make --report=json --output=/dev/null %t'
|
2019-01-01 18:42:06 +00:00
|
|
|
|
|
|
|
Execute(should get elm-test executable for test code with elm >= 0.19):
|
2021-03-20 22:11:22 +00:00
|
|
|
call ale#test#SetFilename('../test-files/elm/newapp/tests/TestSuite.elm')
|
2019-01-01 18:42:06 +00:00
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
let g:executable = ale#path#Simplify(g:dir . '/../test-files/elm/newapp/node_modules/.bin/elm-test')
|
2019-01-01 18:42:06 +00:00
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
AssertLinterCwd ale#path#Simplify(g:dir . '/../test-files/elm/newapp')
|
2019-01-01 18:42:06 +00:00
|
|
|
AssertLinter g:executable,
|
2021-03-01 20:11:10 +00:00
|
|
|
\ ale#Escape(g:executable) . ' make --report=json --output=/dev/null --compiler '
|
2021-03-20 22:11:22 +00:00
|
|
|
\ . ale#path#Simplify(g:dir . '/../test-files/elm/newapp/node_modules/.bin/elm') . ' %t'
|
2019-01-01 18:42:06 +00:00
|
|
|
|
2019-01-04 06:57:14 +00:00
|
|
|
Execute(should fallback to elm executable with elm >= 0.19):
|
2021-03-20 22:11:22 +00:00
|
|
|
call ale#test#SetFilename('../test-files/elm/newapp-notests/tests/TestMain.elm')
|
2019-01-04 06:57:14 +00:00
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
let g:executable = ale#path#Simplify(g:dir . '/../test-files/elm/newapp-notests/node_modules/.bin/elm')
|
2019-01-04 06:57:14 +00:00
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
AssertLinterCwd ale#path#Simplify(g:dir . '/../test-files/elm/newapp-notests')
|
2019-01-04 06:57:14 +00:00
|
|
|
AssertLinter g:executable,
|
2021-03-01 20:11:10 +00:00
|
|
|
\ ale#Escape(g:executable) . ' make --report=json --output=/dev/null %t'
|
2019-01-04 06:57:14 +00:00
|
|
|
|
2019-01-01 18:42:06 +00:00
|
|
|
Execute(should get plain elm executable for test code with elm < 0.19):
|
2021-03-20 22:11:22 +00:00
|
|
|
call ale#test#SetFilename('../test-files/elm/oldapp/tests/TestSuite.elm')
|
2019-01-01 18:42:06 +00:00
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
let g:executable = ale#path#Simplify(g:dir . '/../test-files/elm/oldapp/node_modules/.bin/elm')
|
2019-01-01 18:42:06 +00:00
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
AssertLinterCwd ale#path#Simplify(g:dir . '/../test-files/elm/oldapp')
|
2019-01-01 18:42:06 +00:00
|
|
|
AssertLinter g:executable,
|
2021-03-01 20:11:10 +00:00
|
|
|
\ ale#Escape(g:executable) . ' make --report=json --output=/dev/null %t'
|
2018-08-02 22:44:12 +00:00
|
|
|
|
|
|
|
Execute(should get valid executable with 'use_global' params):
|
|
|
|
let g:ale_elm_make_use_global = 1
|
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
call ale#test#SetFilename('../test-files/elm/newapp/src/Main.elm')
|
2018-08-02 22:44:12 +00:00
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
AssertLinterCwd ale#path#Simplify(g:dir . '/../test-files/elm/newapp')
|
2018-08-02 22:44:12 +00:00
|
|
|
AssertLinter 'elm',
|
2021-03-01 20:11:10 +00:00
|
|
|
\ ale#Escape('elm') . ' make --report=json --output=/dev/null %t'
|
2018-08-02 22:44:12 +00:00
|
|
|
|
|
|
|
Execute(should get valid executable with 'use_global' and 'executable' params):
|
|
|
|
let g:ale_elm_make_executable = 'other-elm'
|
|
|
|
let g:ale_elm_make_use_global = 1
|
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
call ale#test#SetFilename('../test-files/elm/newapp/src/Main.elm')
|
2018-08-02 22:44:12 +00:00
|
|
|
|
2021-03-20 22:11:22 +00:00
|
|
|
AssertLinterCwd ale#path#Simplify(g:dir . '/../test-files/elm/newapp')
|
2018-08-02 22:44:12 +00:00
|
|
|
AssertLinter 'other-elm',
|
2021-03-01 20:11:10 +00:00
|
|
|
\ ale#Escape('other-elm') . ' make --report=json --output=/dev/null %t'
|