This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
ale/test/command_callback/test_staticcheck_command_callback.vader

27 lines
852 B
Text
Raw Normal View History

Before:
call ale#assert#SetUpLinterTest('go', 'staticcheck')
call ale#test#SetFilename('test.go')
After:
call ale#assert#TearDownLinterTest()
Execute(The staticcheck callback should return the right defaults):
AssertLinter 'staticcheck',
2018-10-22 13:59:06 +00:00
\ ale#path#CdString(ale#Escape(expand('%:p:h')))
\ . 'staticcheck '
\ . ale#Escape(expand('%' . ':t'))
Execute(The staticcheck callback should use configured options):
let b:ale_go_staticcheck_options = '-test'
AssertLinter 'staticcheck',
2018-10-22 13:59:06 +00:00
\ ale#path#CdString(ale#Escape(expand('%:p:h')))
\ . 'staticcheck '
\ . '-test ' . ale#Escape(expand('%' . ':t'))
Execute(The staticcheck `lint_package` option should use the correct command):
let b:ale_go_staticcheck_lint_package = 1
AssertLinter 'staticcheck',
2018-10-22 13:59:06 +00:00
\ ale#path#CdString(ale#Escape(expand('%:p:h'))) . 'staticcheck .',