2018-01-08 10:19:17 -05:00
|
|
|
Before:
|
2018-07-15 13:24:53 -04:00
|
|
|
call ale#assert#SetUpLinterTest('lua', 'luac')
|
2018-01-08 10:19:17 -05:00
|
|
|
|
|
|
|
After:
|
2018-07-15 13:24:53 -04:00
|
|
|
call ale#assert#TearDownLinterTest()
|
2018-01-08 10:19:17 -05:00
|
|
|
|
|
|
|
Execute(The default command should be correct):
|
2018-07-15 13:24:53 -04:00
|
|
|
AssertLinter 'luac', ale#Escape('luac') . ' -p - '
|
2018-01-08 10:19:17 -05:00
|
|
|
|
|
|
|
Execute(The luac executable should be configurable):
|
|
|
|
let g:ale_lua_luac_executable = 'luac.sh'
|
|
|
|
|
2018-07-15 13:24:53 -04:00
|
|
|
AssertLinter 'luac.sh', ale#Escape('luac.sh') . ' -p - '
|