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