mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-30 08:04:31 +08:00
#3633 - Move linter tests into test/linter
This commit is contained in:
27
test/linter/test_haskell_hls.vader
Normal file
27
test/linter/test_haskell_hls.vader
Normal file
@@ -0,0 +1,27 @@
|
||||
Before:
|
||||
call ale#assert#SetUpLinterTest('haskell', 'hls')
|
||||
|
||||
Save &filetype
|
||||
let &filetype = 'haskell'
|
||||
|
||||
After:
|
||||
call ale#assert#TearDownLinterTest()
|
||||
|
||||
Execute(The language string should be correct):
|
||||
AssertLSPLanguage 'haskell'
|
||||
|
||||
Execute(The default executable should be correct):
|
||||
AssertLinter 'haskell-language-server-wrapper',
|
||||
\ ale#Escape('haskell-language-server-wrapper') . ' --lsp'
|
||||
|
||||
Execute(The project root should be detected correctly):
|
||||
AssertLSPProject g:dir
|
||||
|
||||
call ale#test#SetFilename('hls_paths/file.hs')
|
||||
|
||||
AssertLSPProject ale#path#Simplify(g:dir . '/hls_paths')
|
||||
|
||||
Execute(The executable should be configurable):
|
||||
let g:ale_haskell_hls_executable = 'foobar'
|
||||
|
||||
AssertLinter 'foobar', ale#Escape('foobar') . ' --lsp'
|
||||
Reference in New Issue
Block a user