2017-09-26 03:19:53 -04:00
|
|
|
Before:
|
2018-07-15 13:24:53 -04:00
|
|
|
call ale#assert#SetUpLinterTest('cs', 'mcs')
|
2017-09-26 03:19:53 -04:00
|
|
|
|
|
|
|
After:
|
2018-07-15 13:24:53 -04:00
|
|
|
call ale#assert#TearDownLinterTest()
|
2017-09-26 03:19:53 -04:00
|
|
|
|
2018-07-15 13:24:53 -04:00
|
|
|
Execute(The default command should be correct):
|
|
|
|
AssertLinter 'mcs', 'mcs -unsafe --parse %t'
|
2017-09-26 03:19:53 -04:00
|
|
|
|
|
|
|
Execute(The options should be be used in the command):
|
|
|
|
let b:ale_cs_mcs_options = '-pkg:dotnet'
|
|
|
|
|
2018-07-15 13:24:53 -04:00
|
|
|
AssertLinter 'mcs', 'mcs -unsafe --parse -pkg:dotnet %t'
|