blob: 5ab5e74fb72ebd2568a7bf57a482db2350ae003f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Before:
call ale#assert#SetUpLinterTest('mercury', 'mmc')
After:
call ale#assert#TearDownLinterTest()
Execute(The default command should be correct):
AssertLinterCwd '%s:h'
AssertLinter 'mmc',
\ ale#Escape('mmc') . ' --errorcheck-only --make --output-compile-error-lines 100 %s:t:r'
Execute(The executable should be configurable):
let b:ale_mercury_mmc_executable = 'foo'
AssertLinter 'foo',
\ ale#Escape('foo') . ' --errorcheck-only --make --output-compile-error-lines 100 %s:t:r'
Execute(The options should be configurable):
let b:ale_mercury_mmc_options = '--bar'
AssertLinter 'mmc',
\ ale#Escape('mmc') . ' --errorcheck-only --bar %s:t:r'
|