#3633 - Move linter tests into test/linter

This commit is contained in:
w0rp
2021-03-21 00:21:49 +00:00
parent 35caaecc9f
commit f7852dbd0a
256 changed files with 40 additions and 144 deletions

View 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'