blob: 7746b44f1c8cac783c887dcfdf156213e3c492cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
Before:
call ale#assert#SetUpLinterTest('crystal', 'ameba')
call ale#test#SetFilename('dummy.cr')
let g:ale_crystal_ameba_executable = 'bin/ameba'
After:
call ale#assert#TearDownLinterTest()
Execute(Executable should default to bin/ameba):
AssertLinter 'bin/ameba', ale#Escape('bin/ameba')
\ . ' --format json '
\ . ale#Escape(ale#path#Simplify(g:dir . '/dummy.cr'))
Execute(Should be able to set a custom executable):
let g:ale_crystal_ameba_executable = 'ameba'
AssertLinter 'ameba' , ale#Escape('ameba')
\ . ' --format json '
\ . ale#Escape(ale#path#Simplify(g:dir . '/dummy.cr'))
|